home *** CD-ROM | disk | FTP | other *** search
- ;****************************************************************************
- ; FILE: sqlcursw.DEF
- ;
- ; PURPOSE: Definitions file for sqlcursw.EXE, Sample SQL
- ; application for Microsoft Windows, version 3.0.
- ;
- ; Copyright (C) 1991, Microsoft Corp.
- ;
- ;****************************************************************************
-
- ;module-definition file for SqlTest -- used by link.exe
-
- NAME sqlcursw ; application's module name
-
- EXETYPE WINDOWS
-
- DESCRIPTION 'Sample SQL Windows App. - Copyright (C) 1991, 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
- _SQLCURSW
-
- ; 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
- GetRowNum @4 ; name of "ROWNUM" processing function
- DelLockRow @5 ; name of "MODIFY" processing function
- ModifyRow @6 ; name of "DELLOCK" processing function
- _dbwinMessageHandler @7 ; message handler
- _dbwinErrorHandler @8 ; error handler
-
-