mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-11 09:49:07 +00:00
19 lines
252 B
C++
19 lines
252 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
class WoW64HookHelper
|
|
{
|
|
public:
|
|
static PWCHAR GetMsgWindowClassName()
|
|
{
|
|
return L"QUICKLOOK_WOW64HOOKHELPER_MSG_CLASS";
|
|
}
|
|
|
|
static bool CheckStatus();
|
|
static bool Launch();
|
|
|
|
private:
|
|
static void createJob();
|
|
};
|