home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / Utilities / ModePro / Src / Prefs / MPPWinTitle.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-25  |  355 b   |  14 lines

  1. /*
  2. #include "mppexterns.h"
  3.  
  4. char WindowTitle[512];
  5. char ProjectName[256];
  6.  
  7. void BuildWinTitle(void)
  8. {
  9.   sprintf(WindowTitle,"%s - %s = \"%s\" - %s = \"%s\"",
  10.         GetString(MSG_WINTITLE), 
  11.         GetString(MSG_WINTITLE_PROJECT),ProjectName, 
  12.         GetString(MSG_WINTITLE_HOTKEY),MPSem->HotKey);
  13.   SetWindowTitles(Window,WindowTitle,WindowTitle);
  14. }*/