mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 20:53:02 +00:00

- 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
29 lines
625 B
C
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;
|
|
}
|