mirror of
https://github.com/Artikash/Textractor.git
synced 2024-12-23 17:04:12 +08:00
small cleanup
This commit is contained in:
parent
b87b4c0b41
commit
9216548848
@ -92,14 +92,14 @@ private:
|
|||||||
|
|
||||||
struct InsertHookCmd // From host
|
struct InsertHookCmd // From host
|
||||||
{
|
{
|
||||||
InsertHookCmd(HookParam hp) : hp(hp) {};
|
InsertHookCmd(HookParam hp) : hp(hp) {}
|
||||||
int command = HOST_COMMAND_NEW_HOOK;
|
int command = HOST_COMMAND_NEW_HOOK;
|
||||||
HookParam hp;
|
HookParam hp;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ConsoleOutputNotif // From hook
|
struct ConsoleOutputNotif // From hook
|
||||||
{
|
{
|
||||||
ConsoleOutputNotif(std::string message = "") { strcpy_s<MESSAGE_SIZE>(this->message, message.c_str()); };
|
ConsoleOutputNotif(std::string message = "") { strcpy_s<MESSAGE_SIZE>(this->message, message.c_str()); }
|
||||||
int command = HOST_NOTIFICATION_TEXT;
|
int command = HOST_NOTIFICATION_TEXT;
|
||||||
char message[MESSAGE_SIZE] = {};
|
char message[MESSAGE_SIZE] = {};
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user