README.txt 697 B

123456789101112131415161718192021222324
  1. This is the Free Pascal Message Compiler.
  2. It compiles a .mc file into a .rc and .msg file which can be compiled by a
  3. resource compiler such as windres. For example:
  4. fpmc -l 90 -e -v -i test.mc -p -r -m
  5. windres -i test.rc -o test.res
  6. It also produces a .pp pascal unit which contains constant definitions
  7. for any message aliases (SymbolicName) found in the .mc file.
  8. The compiler recognizes the following directives in the .mc file:
  9. MessageID
  10. SymbolicName
  11. Language
  12. Other directives as defined by Microsoft are not yet supported.
  13. The readmsg program reads and dumps a .msg message file to screen.
  14. dumpfile produces a hex dump of a file. They were mainly used for debugging.
  15. Enjoy !
  16. Michael.