Initial public release of rem-essentials
This commit is contained in:
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h>
|
||||
|
||||
#define IMPORT __declspec(dllimport)
|
||||
|
||||
enum DumpSeverity : DWORD
|
||||
{
|
||||
SEV_ERROR = 0x100001,
|
||||
SEV_WARNING = 0x100002,
|
||||
SEV_NOTICE = 0x100003
|
||||
};
|
||||
|
||||
typedef int (*FDUMP_HANDLER)(DumpSeverity severity, LPCSTR fmt, ...);
|
||||
|
||||
extern "C"
|
||||
{
|
||||
#ifndef ASM_FDUMP
|
||||
IMPORT FDUMP_HANDLER FDUMP;
|
||||
#endif
|
||||
IMPORT int DACOM_GetDllVersion(LPCSTR dllPath, UINT32& major, UINT32& minor, UINT32& build);
|
||||
}
|
||||
Reference in New Issue
Block a user