diff options
Diffstat (limited to 'runtime/utils.h')
-rw-r--r-- | runtime/utils.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/runtime/utils.h b/runtime/utils.h new file mode 100644 index 0000000..66944e7 --- /dev/null +++ b/runtime/utils.h @@ -0,0 +1,23 @@ +#ifndef UTILS_H +#define UTILS_H + +void ShowMessage(const VMP_CHAR *message); + +#ifdef VMP_GNU +#elif defined(WIN_DRIVER) +HMODULE GetModuleHandleA(const char *name); +#else +void *InternalGetProcAddress(HMODULE module, const char *proc_name); + +__forceinline void InitUnicodeString(PUNICODE_STRING DestinationString, PCWSTR SourceString) +{ + if (SourceString) + DestinationString->MaximumLength = (DestinationString->Length = (USHORT)(wcslen(SourceString) * sizeof(WCHAR))) + sizeof(UNICODE_NULL); + else + DestinationString->MaximumLength = DestinationString->Length = 0; + + DestinationString->Buffer = (PWCH)SourceString; +} +#endif + +#endif
\ No newline at end of file |