mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-12 10:19:07 +00:00
WIP
This commit is contained in:
21
QuickLook.Native.Shell32/QuickLook.Native.Shell32.cpp
Normal file
21
QuickLook.Native.Shell32/QuickLook.Native.Shell32.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
// dllmain.cpp : Defines the entry point for the DLL application.
|
||||
#include "stdafx.h"
|
||||
|
||||
#include "Shell32.h"
|
||||
|
||||
#define EXPORT extern "C" __declspec(dllexport)
|
||||
|
||||
EXPORT void SaveCurrentSelection()
|
||||
{
|
||||
Shell32::SaveCurrentSelection();
|
||||
}
|
||||
|
||||
EXPORT int GetCurrentSelectionCount()
|
||||
{
|
||||
return Shell32::GetCurrentSelectionCount();
|
||||
}
|
||||
|
||||
EXPORT void GetCurrentSelectionBuffer(PWCHAR buffer)
|
||||
{
|
||||
Shell32::GetCurrentSelectionBuffer(buffer);
|
||||
}
|
Reference in New Issue
Block a user