wchar_t dllPathAndFilename[MAX_FILE_PATH_FILENAME_COUNT] = { 0 }; // contains the full path + filename of the injected .dll wchar_t processPathAndFilename[MAX_FILE_PATH_FILENAME_COUNT] = { 0 }; // ...
As stated by the related MSDN page, the CreateRemoteThread API from kernel32.dll creates a thread that runs in the virtual address space of another process. This API is often used for process or ...