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

  1. ;****************************************************************************
  2. ;    FILE: sqlcursw.DEF
  3. ;    
  4. ;    PURPOSE: Definitions file for sqlcursw.EXE, Sample SQL
  5. ;               application for Microsoft Windows, version 3.0.
  6. ;    
  7. ;          Copyright (C) 1991, Microsoft Corp.
  8. ;    
  9. ;****************************************************************************
  10.  
  11. ;module-definition file for SqlTest -- used by link.exe
  12.  
  13. NAME    sqlcursw       ; application's module name
  14.  
  15. EXETYPE WINDOWS
  16.  
  17. DESCRIPTION 'Sample SQL Windows App. - Copyright (C) 1991, 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. _SQLCURSW
  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.     GetRowNum         @4  ; name of "ROWNUM" processing function
  44.     DelLockRow         @5  ; name of "MODIFY" processing function
  45.     ModifyRow         @6  ; name of "DELLOCK" processing function
  46.     _dbwinMessageHandler @7 ; message handler
  47.     _dbwinErrorHandler @8 ; error handler
  48.  
  49. 
  50.