mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 22:05:36 +08:00
22 lines
555 B
C++
22 lines
555 B
C++
#include<Windows.h>
|
|
#ifndef LUNA_PLUGIN_DEF_H
|
|
#define LUNA_PLUGIN_DEF_H
|
|
struct InfoForExtension
|
|
{
|
|
const char* name;
|
|
int64_t value;
|
|
};
|
|
|
|
struct SentenceInfo
|
|
{
|
|
const InfoForExtension* infoArray;
|
|
int64_t operator[](std::string_view propertyName)
|
|
{
|
|
for (auto info = infoArray; info->name; ++info) // nullptr name marks end of info array
|
|
if (propertyName == info->name) return info->value;
|
|
return *(int*)0xDEAD = 0; // gives better error message than alternatives
|
|
}
|
|
};
|
|
typedef wchar_t* (*OnNewSentence_t)(wchar_t*, const InfoForExtension*);
|
|
|
|
#endif |