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

  1. ;****************************************************************************
  2. ;     FILE: sqltest3.DEF
  3. ;    
  4. ;    PURPOSE: Definitions file for sqltest3.EXE, Sample SQL
  5. ;               application for Microsoft Windows, version 3.0.
  6. ;    
  7. ;              Copyright (C) 1990, Microsoft Corp.
  8. ;    
  9. ;****************************************************************************
  10.  
  11. ;module-definition file for SqlTest -- used by link.exe
  12.  
  13. NAME    sqltest3       ; application's module name
  14.  
  15. EXETYPE WINDOWS
  16.  
  17. DESCRIPTION 'Sample SQL Windows App. - Copyright (C) 1990, Microsoft Corp.'
  18.  
  19. STUB    'WINSTUB.EXE' ; Generates error message if application
  20.                       ; is run without Windows
  21.  
  22. CODE    MOVEABLE DISCARDABLE      ; code can be moved in memory
  23.  
  24. ;DATA must be MULTIPLE if program can be invoked more than once
  25.  
  26. DATA    MOVEABLE MULTIPLE PRELOAD
  27.  
  28. HEAPSIZE  8192
  29. STACKSIZE 8192
  30.  
  31. ; name the segments to keep the seg size small.
  32. SEGMENTS
  33. _TEXT PRELOAD
  34. _SQLTEST3
  35.  
  36. ; All functions that will be called by any Windows routine
  37. ; MUST be exported.
  38.  
  39. EXPORTS
  40.     SqlTestwndProc   @1  ; name of window processing function
  41.     AboutSQL         @2  ; name of "About" processing function
  42.     ConnectSQL       @3  ; name of "Connect" processing function
  43.     SelectSQL        @4  ; name of "Select" processing function
  44.     _dbwinMessageHandler @5 ; message handler
  45.     _dbwinErrorHandler @6 ; error handler
  46.  
  47.