home *** CD-ROM | disk | FTP | other *** search
- ;****************************************************************************
- ; FILE: sqltest3.DEF
- ;
- ; PURPOSE: Definitions file for sqltest3.EXE, Sample SQL
- ; application for Microsoft Windows, version 3.0.
- ;
- ; Copyright (C) 1990, Microsoft Corp.
- ;
- ;****************************************************************************
-
- ;module-definition file for SqlTest -- used by link.exe
-
- NAME sqltest3 ; application's module name
-
- EXETYPE WINDOWS
-
- DESCRIPTION 'Sample SQL Windows App. - Copyright (C) 1990, Microsoft Corp.'
-
- STUB 'WINSTUB.EXE' ; Generates error message if application
- ; is run without Windows
-
- CODE MOVEABLE DISCARDABLE ; code can be moved in memory
-
- ;DATA must be MULTIPLE if program can be invoked more than once
-
- DATA MOVEABLE MULTIPLE PRELOAD
-
- HEAPSIZE 8192
- STACKSIZE 8192
-
- ; name the segments to keep the seg size small.
- SEGMENTS
- _TEXT PRELOAD
- _SQLTEST3
-
- ; All functions that will be called by any Windows routine
- ; MUST be exported.
-
- EXPORTS
- SqlTestwndProc @1 ; name of window processing function
- AboutSQL @2 ; name of "About" processing function
- ConnectSQL @3 ; name of "Connect" processing function
- SelectSQL @4 ; name of "Select" processing function
- _dbwinMessageHandler @5 ; message handler
- _dbwinErrorHandler @6 ; error handler
-
-