home *** CD-ROM | disk | FTP | other *** search
- ; FILE: edblib.def
- ;
- ; Generic Embedded SQL for C Win16/Win32 module-definition file
- ;
- ; COMMENTS:
- ;
- ; Copyright (C) 1992 - 1994 Microsoft Corporation
- ;
-
- NAME EDBLib ; application's module name
-
- DESCRIPTION 'EDBLib'
-
- EXETYPE WINDOWS ; required for all Windows applications
-
- PROTMODE
-
- ;CODE can be moved in memory and discarded/reloaded
- CODE PRELOAD MOVEABLE DISCARDABLE
-
- ;DATA must be MULTIPLE if program can be invoked more than once
- DATA PRELOAD MOVEABLE MULTIPLE
-
- HEAPSIZE 8192
- STACKSIZE 8192
-
- ; All functions that will be called by any Windows routine
- ; MUST be exported.
-
- EXPORTS
- MainWndProc @1 ; name of main window proc
- AboutDlgProc @2 ; name of About dialog proc
-