home *** CD-ROM | disk | FTP | other *** search
- ;****************************************************************************
- ; FILE: SQLPM.DEF
- ;
- ; PURPOSE: Definitions file for SQLPM.EXE, Sample SQL
- ; application for Microsoft Presentation Manager
- ;
- ; Copyright (C) 1990, Microsoft Corp.
- ;
- ;****************************************************************************
-
- ;module-definition file for SqlPM -- used by link.exe
-
- NAME SqlPM ; application's module name
-
- DESCRIPTION 'Sample SQL PM App. - Copyright (C) 1990, Microsoft Corp.'
-
- STUB 'OS2STUB.EXE' ; is run without Windows
-
- PROTMODE
-
- HEAPSIZE 2048
- STACKSIZE 8192
-
- ; All functions that will be called by any PM routine
- ; MUST be exported.
-
- EXPORTS
- SqlPMWndProc ; name of window processing function
- AboutSQL ; name of "About" processing function
- ConnectSQL ; name of "Connect..." processing function
- SelectSQL ; name of "Select..." processing function
- _dbPMErrorHandler ; name of error processing function
- _dbPMMessageHandler ; name of message processing function
-