home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a025 / 11.ddi / SQLPM.DE@ / SQLPM.bin
Encoding:
Text File  |  1992-09-15  |  1.1 KB  |  35 lines

  1. ;****************************************************************************
  2. ;     FILE: SQLPM.DEF
  3. ;    
  4. ;    PURPOSE: Definitions file for SQLPM.EXE, Sample SQL
  5. ;               application for Microsoft Presentation Manager
  6. ;    
  7. ;              Copyright (C) 1990, Microsoft Corp.
  8. ;    
  9. ;****************************************************************************
  10.  
  11. ;module-definition file for SqlPM -- used by link.exe
  12.  
  13. NAME    SqlPM       ; application's module name
  14.  
  15. DESCRIPTION 'Sample SQL PM App. - Copyright (C) 1990, Microsoft Corp.'
  16.  
  17. STUB 'OS2STUB.EXE'     ; is run without Windows
  18.  
  19. PROTMODE
  20.  
  21. HEAPSIZE  2048
  22. STACKSIZE 8192
  23.  
  24. ; All functions that will be called by any PM routine
  25. ; MUST be exported.
  26.  
  27. EXPORTS
  28.     SqlPMWndProc ; name of window processing function
  29.     AboutSQL       ; name of "About" processing function
  30.     ConnectSQL       ; name of "Connect..." processing function
  31.     SelectSQL       ; name of "Select..." processing function
  32.     _dbPMErrorHandler ; name of error processing function
  33.     _dbPMMessageHandler ; name of message processing function
  34.  
  35.