Translating One String

In addition to operating on an entire memory file (or a keyworded section of the memory, if this is enabled), you can translate any string. To do this use the translate string function, tr_st():

int tr_st(stp, trtp)
 
UCHAR *stp;
/* String to translate
*/
UCHAR *(*trtp)[ ][2];
/* Translation table to use
*/

You can use this to translate messages as they are needed in your program.


Home Contents Previous Next