Changeset 1454
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/fm3dll2.h
r1451 r1454 27 27 27 Jun 09 GKY Remove IDM_DRIVEATEXT (3950) Drivebar update 28 28 13 Jul 09 SHL Rename timer ids 29 12 Sep 09 GKY Add FM3.INI User ini and system ini to submenu for view ini 29 30 30 31 Align with spaces only - no tabs please … … 404 405 #define IDM_SYSTEMSUBMENU 2014 405 406 #define IDM_BOOKSELFSUBMENU 2015 407 #define IDM_INIVIEWERFM2 2016 408 #define IDM_INIVIEWERSUBMENU 2017 409 #define IDM_INIVIEWERSYS 2018 406 410 407 411 #define IDM_CONFIGMENU 3000 -
trunk/dll/fm3res.rc
r1451 r1454 53 53 and rescans drive in tree container depending on container focus, greyed out 54 54 inappropriate menu context choices 55 12 Sep 09 GKY Add FM3.INI User ini and system ini to submenu for view ini 55 56 56 57 ***********************************************************************/ … … 236 237 MENUITEM "DataBar", IDM_DATABAR 237 238 MENUITEM "", -1, MIS_SEPARATOR 238 MENUITEM "~INI viewer", IDM_INIVIEWER 239 SUBMENU "~INI viewer", IDM_INIVIEWERSUBMENU 240 { 241 MENUITEM "OS/2 ~User INI", IDM_INIVIEWER 242 MENUITEM "OS/2 ~Sys INI", IDM_INIVIEWERSYS 243 MENUITEM "~FM2 INI", IDM_INIVIEWERFM2 244 } 239 245 MENUITEM "~Kill processes", IDM_KILLPROC 240 246 MENUITEM "I~nstant CMD file", IDM_INSTANT -
trunk/dll/inis.c
r1402 r1454 35 35 08 Mar 09 GKY Removed variable aurguments from docopyf and unlinkf (not used) 36 36 14 Mar 09 GKY Additional strings move to PCSZs 37 12 Sep 09 GKY Add FM3.INI User ini and system ini to submenu for view ini 37 38 38 39 ***********************************************************************/ … … 1512 1513 FCF_TITLEBAR | FCF_MINMAX | FCF_MENU | FCF_ACCELTABLE | FCF_NOBYTEALIGN; 1513 1514 1514 HWND StartIniEditor(HWND hwnd, CHAR * 1515 HWND StartIniEditor(HWND hwnd, CHAR *fname, INT flags) 1515 1516 { 1516 1517 /* … … 2091 2092 else { 2092 2093 if (mp1) { 2093 strcpy(inidata->ininame, (CHAR *)mp1); 2094 inidata->hini = PrfOpenProfile(WinQueryAnchorBlock(hwnd), 2095 inidata->ininame); 2096 free(mp1); 2094 if (!strcmp((CHAR *)mp1, "SYS")) { 2095 inidata->hini = HINI_SYSTEMPROFILE; 2096 free(mp1); 2097 } 2098 else 2099 { 2100 strcpy(inidata->ininame, (CHAR *)mp1); 2101 inidata->hini = PrfOpenProfile(WinQueryAnchorBlock(hwnd), 2102 inidata->ininame); 2103 free(mp1); 2104 } 2097 2105 } 2098 2106 else -
trunk/dll/mainwnd.c
r1444 r1454 97 97 inappropriate menu context choices 98 98 22 Jul 09 GKY Code changes to use semaphores to serialize drive scanning 99 12 Sep 09 GKY Add FM3.INI User ini and system ini to submenu for view ini 99 100 100 101 ***********************************************************************/ … … 5345 5346 break; 5346 5347 5348 case IDM_INIVIEWERSYS: 5349 StartIniEditor(hwnd, "SYS", 4); 5350 break; 5351 5352 case IDM_INIVIEWERFM2: 5353 StartIniEditor(hwnd, profile, 4); 5354 break; 5355 5347 5356 case IDM_EDITASSOC: 5348 5357 EditAssociations(hwnd); -
trunk/dll/mainwnd2.c
r1444 r1454 32 32 letter windows; Use button ID to identify drive letter for processing. 33 33 22 Jul 09 GKY Code changes to use semaphores to serialize drive scanning 34 12 Sep 09 GKY Add FM3.INI User ini and system ini to submenu for view ini 34 35 35 36 ***********************************************************************/ … … 436 437 case IDM_DOSCOMMANDLINE: 437 438 case IDM_INIVIEWER: 439 case IDM_INIVIEWERFM2: 440 case IDM_INIVIEWERSYS: 438 441 case IDM_EDITASSOC: 439 442 case IDM_COMMANDLINE:
Note:
See TracChangeset
for help on using the changeset viewer.