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.

26 lines
660 B

  1. NAME CharMap
  2. DESCRIPTION 'Utility for easily selecting special characters.'
  3. EXETYPE WINDOWS ; required for all Windows applications
  4. STUB 'WINSTUB.EXE' ; Generates error message if application
  5. ; is run without Windows
  6. ;CODE can be moved in memory and discarded/reloaded
  7. CODE PRELOAD MOVEABLE DISCARDABLE
  8. ;DATA must be MULTIPLE if program can be invoked more than once
  9. DATA PRELOAD MOVEABLE MULTIPLE
  10. HEAPSIZE 1024
  11. STACKSIZE 5120 ; recommended minimum for Windows applications
  12. ; All functions that will be called by any Windows routine
  13. ; MUST be exported.
  14. EXPORTS
  15. CharMapWndProc @1
  16. CharGridWndProc @2