#include #include #pragma hdrstop int FAR PASCAL LibMain( HANDLE h, WORD wDS, WORD cbHeap, LPSTR lpszCmdLine ) { char szExePath[260]; LPSTR p; if ( cbHeap != 0 ) UnlockData(0); GetModuleFileName( h, szExePath, sizeof(szExePath) ); p = strrchr( szExePath, '\\' ); if ( !p ) return 0; lstrcpy( p+1, "FIX1MB.EXE" ); WinExec( szExePath, SW_SHOWMINIMIZED ); return 1; }