c022bb8d51
Remove ENABLE_IAX option Add an improved FGCom standalone as part of FG in utils directory
27 lines
508 B
C
27 lines
508 B
C
/*
|
|
* Copyrights:
|
|
* Copyright (C) 2006 Gatherworks.com
|
|
*
|
|
* Contributors:
|
|
* Frik Strecker <frik@gatherworks.com>
|
|
* Bill Welch <bill@gatherworks.com>
|
|
*
|
|
*
|
|
* This program is free software, distributed under the terms of
|
|
* the GNU Lesser (Library) General Public License
|
|
*/
|
|
|
|
//#define INITGUID
|
|
//#include <initguid.h>
|
|
#include <windows.h>
|
|
|
|
BOOL APIENTRY DllMain(
|
|
HANDLE hModule,
|
|
DWORD ul_reason_for_call,
|
|
LPVOID lpReserved)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
/* #EOF# */
|
|
|