28 lines
575 B
C++
28 lines
575 B
C++
|
|
|
|
/*************************************************************************
|
|
*
|
|
* File : entry.cpp
|
|
* Purpose : This file contains the startup code for aga10.dll
|
|
* and is only required for Windows DLL creation.
|
|
* Project : AGA10 DLL
|
|
* Version : ver 1.7 2002.11.17
|
|
* Author : W.B. Peterson
|
|
*Revisions:
|
|
*Copyright (c) 2002 American Gas Association
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
#include <windows.h>
|
|
|
|
/* win32 DLL startup code */
|
|
|
|
int WINAPI DLLMain(HINSTANCE hInst, DWORD fdwReason, PVOID pvReserved)
|
|
{
|
|
return TRUE ;
|
|
}
|
|
|
|
|
|
|