reactos/reactos/dll/win32/tapiui/tapiui.c
Aleksey Bragin 0ac6d75c60 Dmitry Chapyshev <lentind@yandex.ru>
- Fully implement tapiui.dll, compatible with Windows.
- Icons come from SUSE's yast2-industrial; 203,202.ico and 301,302.bmp are done by me based on Tango.

svn path=/trunk/; revision=29714
2007-10-20 17:16:30 +00:00

29 lines
625 B
C

/*
* PROJECT: ReactOS Telephone API UI DLL
* LICENSE: GPL - See COPYING in the top level directory
* FILE: dll/win32/tapiui/tapiui.c
* PURPOSE: Telephone API UI DLL
* COPYRIGHT: Dmitry Chapyshev <lentind@yandex.ru>
*
*/
#include <windows.h>
#include "resource.h"
static HINSTANCE hDllInstance;
BOOL WINAPI
DllMain(IN HINSTANCE hinstDLL,
IN DWORD dwReason,
IN LPVOID lpvReserved)
{
switch (dwReason)
{
case DLL_PROCESS_ATTACH:
hDllInstance = hinstDLL;
DisableThreadLibraryCalls(hinstDLL);
break;
}
return TRUE;
}