home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1991 / 03 / megaphon / megaphon.def < prev    next >
Text File  |  1991-01-16  |  807b  |  28 lines

  1. ; module-definition file for Megaphone -- used by LINK.EXE
  2.  
  3. NAME         Megaphone     ; application's module name
  4. DESCRIPTION  'Megaphone - NetWare Intercom'
  5. EXETYPE      WINDOWS       ; required for all Windows applications
  6. STUB         'WINSTUB.EXE' ; Generates error message if application
  7.                ; is run without Windows
  8.  
  9. ;CODE can be moved in memory and discarded/reloaded
  10. CODE  PRELOAD MOVEABLE DISCARDABLE
  11.  
  12. ;DATA must be MULTIPLE if program can be invoked more than once
  13. DATA  PRELOAD MOVEABLE MULTIPLE
  14.  
  15. HEAPSIZE     1024
  16. STACKSIZE    5120       ; recommended minimum for Windows applications
  17.  
  18. ; All functions that will be called by any Windows routine
  19. ; MUST be exported.
  20.  
  21. EXPORTS
  22.     MainWndProc    @1
  23.     About          @2
  24.     UserInfo       @3
  25.     MessageHandler @4
  26.     Settings       @5
  27.  
  28.