Thanks a lot
And next noob question: How can I work with this resource(reading/writing)? Or must I use the WizWriteFileFromResource function?
I expect you could use WizWriteFileFromResource() but if not look at these API's
HRSRC hRes = FindResource(hInst, name, RT_RCDATA);
DWORD dwResSize = SizeofResource(hInst, hRes);
HGLOBAL hResGlobal = LoadResource(hInst, hRes);
LPVOID lpResMem = LockResource(hResGlobal);
You should check the return values of course.
John