You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
371 B
14 lines
371 B
// Copyright (c) Microsoft Corporation
|
|
#include "stdinc.h"
|
|
|
|
void PrintComctl32Path(PCSTR Class)
|
|
{
|
|
WCHAR Buffer[MAX_PATH];
|
|
PWSTR FilePart;
|
|
|
|
Buffer[0] = 0;
|
|
SearchPathW(NULL, L"comctl32.dll", NULL, MAX_PATH, Buffer, &FilePart);
|
|
|
|
//DebugBreak();
|
|
DbgPrint("Class %s, Thread 0x%lx, comctl32 %ls\n", Class, GetCurrentThreadId(), Buffer);
|
|
}
|