home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / sdk / win32s / ut / samples / utsample / utsamp16.def < prev    next >
Encoding:
Text File  |  1995-07-11  |  571 b   |  22 lines

  1. LIBRARY         utsamp16        ; Library's module name
  2. DESCRIPTION  'Sample Win32s Universal Thunk Application'
  3. EXETYPE      WINDOWS       ; required for all Windows applications
  4. STUB         'WINSTUB.EXE' ; Generates error message if application
  5.                            ; is run without Windows
  6.  
  7. ;CODE can be moved in memory and discarded/reloaded
  8. CODE  PRELOAD MOVEABLE DISCARDABLE
  9.  
  10. DATA  PRELOAD MOVEABLE SHARED
  11.  
  12. HEAPSIZE     1024
  13.  
  14. ; Export all callback and externally available functions
  15. EXPORTS
  16.     WEP    @1 RESIDENTNAME
  17.     UTINIT    @2
  18.     UTPROC    @3
  19.  
  20. IMPORTS
  21.     USER.WNETGETUSER
  22.