Diff for /np2/win9x/toolwin.res between versions 1.3 and 1.6

version 1.3, 2003/10/30 16:54:04 version 1.6, 2005/02/09 20:11:35
Line 1 Line 1
   
 static const char np2toolclass[] = "np2-toolwin";  static const OEMCHAR np2toolclass[] = OEMTEXT("np2-toolwin");
 static const char np2tooltitle[] = "NP2 tool";  static const OEMCHAR np2tooltitle[] = OEMTEXT("NP2 tool");
   
 static const char str_deffont[] = "£Í£Ó £Ð¥´¥·¥Ã¥¯";  static const OEMCHAR str_deffont[] = OEMTEXT("£Í£Ó £Ð¥´¥·¥Ã¥¯");
 static const char str_browse[] = "...";  static const OEMCHAR str_browse[] = OEMTEXT("...");
 static const char str_eject[] = "Eject";  static const OEMCHAR str_eject[] = OEMTEXT("Eject");
 static const char str_reset[] = "Reset";  static const OEMCHAR str_reset[] = OEMTEXT("Reset");
 static const char str_power[] = "Power";  static const OEMCHAR str_power[] = OEMTEXT("Power");
   
 static const char str_static[] = "STATIC";  static const OEMCHAR str_static[] = OEMTEXT("STATIC");
 static const char str_combobox[] = "COMBOBOX";  static const OEMCHAR str_combobox[] = OEMTEXT("COMBOBOX");
 static const char str_button[] = "BUTTON";  static const OEMCHAR str_button[] = OEMTEXT("BUTTON");
   
 static const SUBITEM defsubitem[IDC_MAXITEMS] = {  static const SUBITEM defsubitem[IDC_MAXITEMS] = {
                 {TCTL_STATIC,   NULL,            47, 44,   8,   3, 0, 0},                  {TCTL_STATIC,   NULL,            49, 44,   8,   3, 0, 0},
                 {TCTL_STATIC,   NULL,            93, 19,   8,   3, 0, 0},                  {TCTL_STATIC,   NULL,            93, 19,   8,   3, 0, 0},
                 {TCTL_DDLIST,   NULL,           104,  6, 248, 160, 0, 0},                  {TCTL_DDLIST,   NULL,           104,  6, 248, 160, 0, 0},
                 {TCTL_BUTTON,   str_browse,     352,  7,  18,  17, 0, 0},                  {TCTL_BUTTON,   str_browse,     352,  7,  18,  17, 0, 0},
Line 27  static const SUBITEM defsubitem[IDC_MAXI Line 27  static const SUBITEM defsubitem[IDC_MAXI
   
 // ----  // ----
   
 static const char skintitle[] = "ToolWindow";  static const OEMCHAR skintitle[] = OEMTEXT("ToolWindow");
   
 static const INITBL skinini[] = {  static const INITBL skinini1[] = {
         {"MAIN",                INITYPE_STR,    toolskin.main,  sizeof(toolskin.main)},          {"MAIN",                INITYPE_STR,    toolskin.main,  NELEMENTS(toolskin.main)},
         {"FONT",                INITYPE_STR,    toolskin.font,  sizeof(toolskin.font)},          {"FONT",                INITYPE_STR,    toolskin.font,  NELEMENTS(toolskin.font)},
         {"FONTSIZE",    INITYPE_SINT32, &toolskin.fontsize,                                     0},          {"FONTSIZE",    INITYPE_SINT32, &toolskin.fontsize,                                     0},
         {"COLOR1",              INITYPE_HEX32,  &toolskin.color1,                                       0},          {"COLOR1",              INITYPE_HEX32,  &toolskin.color1,                                       0},
         {"COLOR2",              INITYPE_HEX32,  &toolskin.color2,                                       0},          {"COLOR2",              INITYPE_HEX32,  &toolskin.color2,                                       0}};
   
   static const INITBL skinini2[] = {
         {"HDDACC",              INITYPE_ARGS16, &subitem[IDC_TOOLHDDACC].posx,          5},          {"HDDACC",              INITYPE_ARGS16, &subitem[IDC_TOOLHDDACC].posx,          5},
         {"FD1ACC",              INITYPE_ARGS16, &subitem[IDC_TOOLFDD1ACC].posx,         5},          {"FD1ACC",              INITYPE_ARGS16, &subitem[IDC_TOOLFDD1ACC].posx,         5},
         {"FD1LIST",             INITYPE_ARGS16, &subitem[IDC_TOOLFDD1LIST].posx,        5},          {"FD1LIST",             INITYPE_ARGS16, &subitem[IDC_TOOLFDD1LIST].posx,        5},
Line 54  static const INITBL skinini[] = { Line 56  static const INITBL skinini[] = {
   
 // ----  // ----
   
 static const char str_skindef[] = "&Base Skin";  static const OEMCHAR str_skindef[] = OEMTEXT("<&Base Skin>");
 static const char str_skinsel[] = "&Load Skin...";  static const OEMCHAR str_skinsel[] = OEMTEXT("&Select Skin...");
 static const char str_toolclose[] = "&Close";  static const OEMCHAR str_toolskin[] = OEMTEXT("&Skins");
   static const OEMCHAR str_toolclose[] = OEMTEXT("&Close");
 static const char skinui_title[] = "Select skin file";  
 static const char skinui_filter[] =                                                             \  static const OEMCHAR skinui_title[] = OEMTEXT("Select skin file");
                                                                 "ini files (*.ini)\0*.ini\0"    \  static const OEMCHAR skinui_filter[] = OEMTEXT("ini files (*.ini)\0*.ini\0text files (*.txt)\0*.txt\0All files (*.*)\0*.*\0");
                                                                 "text files (*.txt)\0*.txt\0"   \  static const OEMCHAR skinui_ext[] = OEMTEXT("ini");
                                                                 "All files (*.*)\0*.*\0";  
 static const char skinui_ext[] = "ini";  
 static const FILESEL skinui = {skinui_title, skinui_ext, skinui_filter, 1};  static const FILESEL skinui = {skinui_title, skinui_ext, skinui_filter, 1};
   

Removed from v.1.3  
changed lines
  Added in v.1.6


RetroPC.NET-CVS <cvs@retropc.net>