home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / samples / pm / ipf / ipf.def < prev    next >
Text File  |  1999-05-11  |  439b  |  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.