Mooore aggressive GC; rewrite native dll

This commit is contained in:
Paddy Xu
2017-05-29 00:11:16 +03:00
parent 13dfa7a815
commit 5ad20b8a53
15 changed files with 252 additions and 352 deletions

View File

@@ -5,22 +5,12 @@
#define EXPORT extern "C" __declspec(dllexport)
EXPORT int GetFocusedWindowType()
EXPORT Shell32::FocusedWindowType GetFocusedWindowType()
{
return Shell32::GetFocusedWindowType();
}
EXPORT void SaveCurrentSelection()
EXPORT void GetCurrentSelection(PWCHAR buffer)
{
Shell32::SaveCurrentSelection();
}
EXPORT int GetCurrentSelectionCount()
{
return Shell32::GetCurrentSelectionCount();
}
EXPORT void GetCurrentSelectionBuffer(PWCHAR buffer)
{
Shell32::GetCurrentSelectionBuffer(buffer);
Shell32::GetCurrentSelection(buffer);
}