
#include // RtlStringCbPrintfW#include // DbgPrint, UNICODE_STRING, ANSI_STRING 등void WriteBlockDebugLog( PCWSTR prefix, // 유니코드 로그 구분자(한글 OK) PCWSTR uniMD5FilePath, // 로그 내용1 PCWSTR wszImageFileName, // 로그 내용2 PCWSTR wszMD5 // 로그 내용3){ // NULL-safe: NULL이면 (null) 대체 if (!prefix) prefix = L"(null)"; if (!uniMD5FilePath) uniMD5..