This is the skinned version, the main EXE size is
only 36 Kb (almost 1/3 of the original PB's 32-bit version).
If you want to disable the skin engine, just REM out the lines shown below in blue.
if (skInitEngine (L"Reader.sks", L"")) { // REM out these 2 lines if you want
if (skSkinWindow(gP.hMain, (WCHAR*) SYSTOOLTIP)) { // to disable the WinLIFT skin engine.
// Show the main window
ShowWindow(gP.hMain, nCmdShow);
UpdateWindow(gP.hMain);
while (GetMessage(&msg, NULL, 0, 0)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
}