unload.h 235 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 #pragma once // unload.h // 5/2/2014 jichi #include "windbg/windbg.h" #include <windows.h> WINDBG_BEGIN_NAMESPACE /** * Unload current injected DLL. * @return BOOL */ BOOL unloadCurrentModule(); WINDBG_END_NAMESPACE // EOF