Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
897 B

  1. ; module-definition file for mgrtest -- used by LINK.EXE
  2. NAME wthook ; 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 57900
  12. STACKSIZE 6000
  13. ; All functions that will be called by any Windows routine
  14. ; MUST be exported.
  15. EXPORTS
  16. ; MainWndProc @1 ; name of window processing function
  17. ; About @2 ; name of "About" processing function
  18. ; Do1Context ; enumeration callback function
  19. ; ButtonDlgProc