home *** CD-ROM | disk | FTP | other *** search
- #include <windows.h>
- #include "paluser.hpp"
- HANDLE hMod= 0;
-
- extern "C" int EXPPLUS LibMain (
- HANDLE hModule,
- WORD ,// wDataSeg,
- WORD ,// cbHeapSize,
- LPSTR // lpszCmdLine
- )
- {
- #ifdef DEBUG
- OutputDebugString("test Libmain\r\n");
- #endif
-
- hMod = hModule;
- return TRUE;
- }
-
- extern "C" int EXPPLUS WEP(int /* bSystemExit */)
- {
- #ifdef DEBUG
- OutputDebugString( "test WEP\r\n" );
- #endif
-
- return 1;
- }
-
-