home *** CD-ROM | disk | FTP | other *** search
- #define STRICT
- #include <windows.h>
- #include "simple.h"
-
-
- int FAR pascal _export SquareInt( int x )
- {
- return x*x;
- }
-
-
-
-
- #pragma argsused
- int FAR PASCAL LibMain( HINSTANCE hInstance,
- WORD wDataSegment,
- WORD wHeapSize,
- LPSTR lpszCmdLine )
- {
- if ( wHeapSize != 0 )
- UnlockData( 0 );
- return 1;
- }
-
-
-
-
-
- #pragma argsused
- int FAR PASCAL WEP ( int bSystemExit )
- {
- return 1;
- }
-