1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21:
// gründete den Haken ÜBERPRÜFEN (CFuncInAPIHook:: () .HookFunction (_T („user32.dll“), _T („MessageBoxW“), AfxGetInstanceHandle (), &MyMessageBox (PROC) als Beispiel anführen)); //-Wiedereinbauverfahren int WINAPI MyMessageBox (HWND hWnd, LPCTSTR lpText, LPCTSTR lpCaption, UINT uType ) { //-Funktionszeiger muss die gleiche benennende Versammlung wie PROC (WINAPI) haben! Folglich WINAPI (__stdcall) voranstellen! typedef int (WINAPI *MESSAGEBOX_FUNC) (HWND, LPCTSTR, LPCTSTR, UINT); // zurückholen nur die ursprüngliche Adresse der Funktion einmal einmal! statisches MESSAGEBOX_FUNC pFunc = (MESSAGEBOX_FUNC) CFuncInAPIHook:: () .RetrieveOriginalAPIFunctionAddress (_T („user32.dll“), _T („MessageBoxW“ als Beispiel anführen)); ERKLÄREN (pFunc); pFunc zurückbringen? (*pFunc) (hWnd, _T („ich angespannt diesen Anruf n! "), lpCaption, uType): 0; } // dieser Anruf angespannt t :: MessageBox (NULL, _T (""), _T („Titel“), MB_OK);