tapiui.dll doesn't have an entry point

svn path=/trunk/; revision=29719
This commit is contained in:
Thomas Bluemel 2007-10-20 18:34:56 +00:00
parent 7ebd9da005
commit 64c30129f0
2 changed files with 1 additions and 33 deletions

View file

@ -1,29 +0,0 @@
/*
* 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;
}

View file

@ -1,11 +1,8 @@
<module name="tapiui" type="win32dll" baseaddress="${BASEADDRESS_TAPIUI}" installbase="system32" installname="tapiui.dll" unicode="true">
<module name="tapiui" type="win32dll" baseaddress="${BASEADDRESS_TAPIUI}" entrypoint="0" installbase="system32" installname="tapiui.dll" unicode="true">
<include base="tapiui">.</include>
<define name="__USE_W32API" />
<define name="_WIN32_IE">0x0500</define>
<define name="_WIN32_WINNT">0x0600</define>
<define name="WINVER">0x0600</define>
<library>ntdll</library>
<library>kernel32</library>
<file>tapiui.c</file>
<file>tapiui.rc</file>
</module>