Changeset 4964 for trunk/src/kernel32/initsystem.cpp
- Timestamp:
- Jan 18, 2001, 7:14:16 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/initsystem.cpp
r4946 r4964 1 /* $Id: initsystem.cpp,v 1.2 5 2001-01-14 17:16:54sandervl Exp $ */1 /* $Id: initsystem.cpp,v 1.26 2001-01-18 18:14:16 sandervl Exp $ */ 2 2 /* 3 3 * Odin system initialization (registry, directories & environment) … … 101 101 #define DEVICE_GROUP_SCSICDROM "SCSI CDROM Class" 102 102 103 const char szMci[] = "mci"; 104 const char szCDAudio[] = "cdaudio"; 105 const char szMciCDA[] = "mcicda.drv"; 106 103 107 //****************************************************************************** 104 108 //****************************************************************************** … … 676 680 PROFILE_SetOdinIniString(ODINFONTSECTION, "MS Sans Serif", "WarpSans"); 677 681 } 678 682 //Create system.ini with [mci] section 683 strcpy(shellpath, InternalGetWindowsDirectoryA()); 684 strcat(shellpath, "\\system.ini"); 685 686 if(GetPrivateProfileStringA(szMci, szCDAudio, szMciCDA, &temp, 0, shellpath) <= 1) { 687 WritePrivateProfileStringA(szMci, szCDAudio, szMciCDA, shellpath); 688 } 679 689 return TRUE; 680 690
Note:
See TracChangeset
for help on using the changeset viewer.