home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Internet Business Development Kit / PRODUCT_CD.iso / sqlsvr / esqlc / esql / samples.c / edblib.def < prev    next >
Encoding:
Text File  |  1995-11-21  |  796 b   |  33 lines

  1. ;   FILE:   edblib.def
  2. ;
  3. ;       Generic Embedded SQL for C Win16/Win32 module-definition file
  4. ;
  5. ;   COMMENTS:
  6. ;
  7. ;       Copyright (C) 1992 - 1994 Microsoft Corporation
  8. ;
  9.  
  10. NAME            EDBLib           ; application's module name
  11.  
  12. DESCRIPTION     'EDBLib'
  13.  
  14. EXETYPE         WINDOWS         ; required for all Windows applications
  15.  
  16. PROTMODE
  17.  
  18. ;CODE can be moved in memory and discarded/reloaded
  19. CODE  PRELOAD MOVEABLE DISCARDABLE
  20.  
  21. ;DATA must be MULTIPLE if program can be invoked more than once
  22. DATA  PRELOAD MOVEABLE MULTIPLE
  23.  
  24. HEAPSIZE     8192
  25. STACKSIZE    8192
  26.  
  27. ; All functions that will be called by any Windows routine
  28. ; MUST be exported.
  29.  
  30. EXPORTS
  31.     MainWndProc   @1        ; name of main window proc
  32.     AboutDlgProc  @2        ; name of About dialog proc
  33.