Home |
RTTarget-32 Programming Manual Function RTBootRM and RTBootPM Function RTDLLThreadEvent System Management BIOS (SMBIOS) Advanced Programmable Interrupt Controller (APIC) |
Function RTDLLThreadEventFunction RTDLLThreadEvent calls a specific or all entrypoints (function DllEntryPoint) of DLLs currently in use: void RTDLLThreadEvent(HMODULE Handle, DWORD Win32Event); ParametersHandleThe handle of the DLL's entrypoint to be called. Handle may be NULL. In this case, the entrypoints of all currently loaded DLLs (DLLs with a current reference count greater 0) are called. Win32EventThis is passed on to the DllEntryPoint functions as parameter fdwReason. It may have one of the values DLL_THREAD_ATTACH, DLL_THREAD_DETACH, or DLL_PROCESS_DETACH. The reference count of the DLL(s) is not modified by this function. Thus, passing DLL_PROCESS_DETACH is not recommended (use FreeLibrary instead), except at program termination. More information about using DLLs is available in Advanced Topics, Using DLLs through RTLoc and The RTTarget-32 API, Win32 DLLs. Function RTBootRM and RTBootPM
|