mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-07 21:48:06 +00:00
22 lines
383 B
C++
22 lines
383 B
C++
#include "stdafx.h"
|
|
|
|
#include "Shell32.h"
|
|
#include "WoW64HookHelper.h"
|
|
|
|
#define EXPORT extern "C" __declspec(dllexport)
|
|
|
|
EXPORT void LaunchWoW64HookHelper()
|
|
{
|
|
WoW64HookHelper::Launch();
|
|
}
|
|
|
|
EXPORT Shell32::FocusedWindowType GetFocusedWindowType()
|
|
{
|
|
return Shell32::GetFocusedWindowType();
|
|
}
|
|
|
|
EXPORT void GetCurrentSelection(PWCHAR buffer)
|
|
{
|
|
Shell32::GetCurrentSelection(buffer);
|
|
}
|