"Ferenc" == Ferenc Wagner wferi@afavant.elte.hu writes:
... Ferenc> which I don't understand given the definition
Ferenc> ---------------------------------------------------------------- Ferenc> HWND WINAPI CreateDialogParamA( HINSTANCE hInst, LPCSTR name, Ferenc> HWND owner, DLGPROC dlgProc, LPARAM param ) { HRSRC hrsrc; Ferenc> LPCDLGTEMPLATEA ptr;
Ferenc> if (!(hrsrc = FindResourceA( hInst, name, (LPSTR)RT_DIALOG Ferenc> ))) return 0; if (!(ptr = (LPCDLGTEMPLATEA)LoadResource(hInst, Ferenc> hrsrc))) return 0; return CreateDialogIndirectParamA( hInst, Ferenc> ptr, owner, dlgProc, param ); } Ferenc> ----------------------------------------------------------------
Ferenc> After LoadResource returns, I would expect a call to Ferenc> CreateDialogIndirectParamA instead of the SysLevels etc. Could Ferenc> somebody explain this, please?
Intra DLL calls are not looged by relay debugging. So you don't see the CreateDialogIndirectParamA call in a relay log. Maybe +dialog may help. Otherwise instrument the calls with more messages.
Bye