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.

28 lines
448 B

  1. typedef struct _MESSAGE_STRING {
  2. FPCHAR _far *String;
  3. UINT Id;
  4. } MESSAGE_STRING, _far *FPMESSAGE_STRING;
  5. BOOL
  6. GetTextForProgram(
  7. IN FPCHAR Argv0,
  8. IN OUT FPMESSAGE_STRING Messages,
  9. IN UINT MessageCount
  10. );
  11. //
  12. // Lower-level routine
  13. //
  14. BOOL
  15. PatchMessagesFromFile(
  16. IN FPCHAR Filename,
  17. IN OUT FPMESSAGE_STRING Messages,
  18. IN UINT MessageCount
  19. );