home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / win_lrn / graphics / crbitmap.def < prev    next >
Encoding:
Text File  |  1988-08-11  |  640 b   |  23 lines

  1. ;Module definition file for CreateBitMap
  2.  
  3. NAME    CrBitMap    ; application's module name
  4.  
  5. DESCRIPTION 'Sample Microsoft Windows Application'
  6.  
  7. STUB    'WINSTUB.EXE'    ; make sure it doesn't run w/o windows
  8.  
  9. CODE    MOVEABLE    ; code can be moved in memory
  10.  
  11. ;DATA must be MULTIPLE if program can be invoked more than once
  12. DATA    MOVEABLE MULTIPLE
  13.  
  14. HEAPSIZE 1024
  15. STACKSIZE 4096        ; recommended minimum for windows applications
  16.  
  17. ; All functions which will be called by any other Windows routine
  18. ; must be exported
  19. EXPORTS
  20.     CreateBitMapWndProc @1    ; name of window processing function
  21.     About @2        ; name of "About" processing function
  22.  
  23.