SIMPDND.DEF
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. ; module-definition file for generic -- used by LINK.EXE
  2. NAME         Simple       ; application's module name
  3. DESCRIPTION  'Sample Microsoft Windows Application'
  4. EXETYPE      WINDOWS       ; required for all Windows applications
  5. STUB         'WINSTUB.EXE' ; Generates error message if application
  6.    ; is run without Windows
  7. ;CODE can be moved in memory and discarded/reloaded
  8. CODE  PRELOAD MOVEABLE DISCARDABLE
  9. ;DATA must be MULTIPLE if program can be invoked more than once
  10. DATA  PRELOAD MOVEABLE MULTIPLE
  11. HEAPSIZE     1024
  12. ; All functions that will be called by any Windows routine
  13. ; MUST be exported.