Source code of Windows XP (NT5)
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
809 B

  1. NAME DdeSpy
  2. EXETYPE WINDOWS ; required for all Windows applications
  3. STUB 'WINSTUB.EXE' ; Generates error message if application
  4. ; is run without Windows
  5. ;CODE can be moved in memory and discarded/reloaded
  6. CODE PRELOAD MOVEABLE DISCARDABLE
  7. ;DATA must be MULTIPLE if program can be invoked more than once
  8. DATA PRELOAD MOVEABLE MULTIPLE
  9. HEAPSIZE 4096
  10. STACKSIZE 5120 ; recommended minimum for Windows applications
  11. ; All functions that will be called by any Windows routine
  12. ; MUST be exported.
  13. EXPORTS
  14. MainWndProc @1 ; name of window processing function
  15. About @2 ; name of "About" processing function
  16. OpenDlg @3
  17. StrWndProc @4
  18. DdeCallback @5
  19. MarkDlgProc @6
  20. MCLBClientWndProc @7
  21. FilterDlgProc @8