home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / makemb / read.me < prev   
Text File  |  1992-04-14  |  2KB  |  39 lines

  1. (This documentation is substantially the same as that in the source file.)
  2.  
  3.  
  4.     MakeMB is a utility to ameliorate the problems in maintaining message
  5.     files when you intend to bind messages to an executable file.
  6.  
  7.     If you plan on using the msgbind utility to bind a set of messages to
  8.     an executable file then you have to supply a message bind directive
  9.     file.  This program helps you by automating the construction of the
  10.     directive file.
  11.  
  12.     Two parameters are required.  The first is the name of the executable
  13.     file to which the message segment will be bound.  The second is the
  14.     name of the message file which was constructed by the mkmsgf utility.
  15.     Standard input should come from the message source file, i.e. the
  16.     one used as input to mkmsgf, and standard output should be sent to
  17.     the bind directive file.
  18.  
  19.     Example:
  20.  
  21.     You have a brilliant program, brill.exe to which you want to bind
  22.     a message segment.  The source for the messages is in message.src
  23.     and you used that as input to mkmsgf to build a binary message file
  24.     message.bin.
  25.  
  26.         makemb brill.exe message.bin <message.src >message.mb
  27.  
  28.     takes as input the same message source used by mkmsgf and generates
  29.     message.mb for input to msgbind.
  30.  
  31.     This makes the maintenance of message files a whole lot easier: you
  32.     can change the message source file and construct the bind directive
  33.     file automagically; otherwise every message numbering change would
  34.     have to be manually duplicated in the bind directive file.
  35.  
  36.  
  37. Jon Saxton
  38. February 1990
  39.