VOID CFileEditor::Calculator(int32_t Width, int32_t Height, BOOL IsFull)
{
WCHAR New_X[128];
WCHAR New_Y[128];
WCHAR OtherData[128];
WCHAR New_Width[128];
WCHAR New_Height[128];
wsprintfW(New_Width, L"%d", Width);
wsprintfW(New_Height, L"%d", Height);
WritePrivateProfileStringW(L"0-130", L"w", New_Width, L"ini\\GUI.ini");
WritePrivateProfileStringW(L"0-130", L"x", New_X, L"ini\\GUI.ini");
WritePrivateProfileStringW(L"0-130", L"y", New_Y, L"ini\\GUI.ini");
if (IsFull)
{
CFileEditor::NextStep5517(Width, Height);
}
}