home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / devtools / toolkt21 / c / samples / ipf / ipf.def < prev    next >
Encoding:
Text File  |  1993-03-12  |  439 b   |  23 lines

  1. ;*********** IPF C Sample Program Module Definition File (.DEF) **********
  2. ;
  3. ;  The module definition file supplies extra information about the program
  4. ;  module to the LINKER.
  5. ;
  6.  
  7.  
  8. LIBRARY IPF
  9. DESCRIPTION 'IPF animation'
  10.  
  11. PROTMODE
  12. DATA    MULTIPLE READWRITE LOADONCALL
  13. CODE    LOADONCALL
  14.  
  15. STACKSIZE   8192
  16. HEAPSIZE    4024
  17.  
  18.  
  19. EXPORTS
  20.    IPFMain           ;Entry point procedure
  21.    IPFWinProc        ;Window procedure
  22.  
  23.