Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 40 of file setupldr.c.
Referenced by LoadReactOSSetup().
{ INFCONTEXT InfContext; BOOLEAN Status; LPCSTR AnsiName, OemName, LangName; /* Get ANSI codepage file */ if (!InfFindFirstLine(InfHandle, "NLS", "AnsiCodepage", &InfContext)) { ERR("Failed to find 'NLS/AnsiCodepage'\n"); return; } if (!InfGetDataField(&InfContext, 1, &AnsiName)) { ERR("Failed to get load options\n"); return; } /* Get OEM codepage file */ if (!InfFindFirstLine(InfHandle, "NLS", "OemCodepage", &InfContext)) { ERR("Failed to find 'NLS/AnsiCodepage'\n"); return; } if (!InfGetDataField(&InfContext, 1, &OemName)) { ERR("Failed to get load options\n"); return; } if (!InfFindFirstLine(InfHandle, "NLS", "UnicodeCasetable", &InfContext)) { ERR("Failed to find 'NLS/AnsiCodepage'\n"); return; } if (!InfGetDataField(&InfContext, 1, &LangName)) { ERR("Failed to get load options\n"); return; } Status = WinLdrLoadNLSData(LoaderBlock, SearchPath, AnsiName, OemName, LangName); TRACE("NLS data loaded with status %d\n", Status); }