home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / netware / ipxrcv.exe / IPXREC.DEF < prev    next >
Text File  |  1995-06-06  |  1KB  |  45 lines

  1. ;
  2. ; The following source code is provided to aid in the development of
  3. ; NetWare (TM) compatible products and is provided "AS IS" AND WITHOUT
  4. ; ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION ANY
  5. ; IMPLIED WARRANTIES OF MERCHANTABILITY, TITLE AND FITNESS FOR A
  6. ; PARTICULAR PURPOSE.  Some states do not allow limitations on how long
  7. ; an implied warranty lasts, so the above limitation may not apply to
  8. ; You.  This warranty gives you specific legal rights which vary from
  9. ; state to state.  Some states do not allow the exclusion or limitation
  10. ; of incidental or consequential damages, so the above limitation or
  11. ; exclusion may not apply to You.
  12. ;
  13.  
  14.  
  15. NAME    Fonestat       ; application's module name
  16.  
  17. DESCRIPTION 'Sample Windows IPX Application'
  18.  
  19. EXETYPE WINDOWS       ; required for all Windows applications
  20.  
  21. STUB    'WINSTUB.EXE' ; Generates error message if application
  22.                       ; is run without Windows
  23.  
  24. CODE    PRELOAD FIXED
  25.  
  26. ;DATA must be MULTIPLE if program can be invoked more than once
  27. ;However, since the ESR must load DGROUP, the program can only be
  28. ;invoked once.
  29.  
  30. DATA    PRELOAD FIXED SINGLE
  31.  
  32. HEAPSIZE  9728  ; 4096 = recommended minimum for Windows apps
  33. STACKSIZE 15360 ; 8192 = recommended minimum for Windows applications
  34.  
  35. ; All functions that will be called by any Windows routine
  36. ; MUST be exported.
  37.  
  38. IMPORTS
  39.  
  40. EXPORTS
  41.     MainWndProc     @1001  ; name of window processing function
  42.  
  43.  
  44.     
  45.