void InitLoginTheme(){ HMODULE module = LoadLibrary("logintheme.dll"); if (module == 0) { return; } void(*Init)(int timestep) = ((void(*)(int))GetProcAddress(module, "Init")); if (Init != 0) { Init(45); /*timestep in ms*/ }}
InitLoginTheme();