mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-14 12:19:08 +00:00
17 lines
351 B
C++
17 lines
351 B
C++
// dllmain.cpp : Defines the entry point for the DLL application.
|
|
#include "stdafx.h"
|
|
|
|
#include "Shell32.h"
|
|
|
|
#define EXPORT extern "C" __declspec(dllexport)
|
|
|
|
EXPORT Shell32::FocusedWindowType GetFocusedWindowType()
|
|
{
|
|
return Shell32::GetFocusedWindowType();
|
|
}
|
|
|
|
EXPORT void GetCurrentSelection(PWCHAR buffer)
|
|
{
|
|
Shell32::GetCurrentSelection(buffer);
|
|
}
|