RM>BOOL TestDebugEntry(HINSTANCE hModule, LPTSTR lpszEntryName) RM>{ RM> LPBYTE *lpEntry; RM> lpEntry = (LPBYTE)GetProcAddress(hModule, lpszEntryName); RM> return *lpEntry == 0xCC ? TRUE : FALSE; RM> } RM>