diff options
author | DrFrugal <drfrugal@vmi2238186.contaboserver.net> | 2024-12-30 18:42:10 +0100 |
---|---|---|
committer | DrFrugal <drfrugal@vmi2238186.contaboserver.net> | 2024-12-30 18:42:10 +0100 |
commit | 24ca502e3af452603ed191948e5ece016e2204b2 (patch) | |
tree | 52964d5f1cb574b155cbc23ad764aa64fb41f330 /packages/Detours.4.0.1/lib/native/include/detver.h |
Diffstat (limited to 'packages/Detours.4.0.1/lib/native/include/detver.h')
-rw-r--r-- | packages/Detours.4.0.1/lib/native/include/detver.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/Detours.4.0.1/lib/native/include/detver.h b/packages/Detours.4.0.1/lib/native/include/detver.h new file mode 100644 index 0000000..523ae13 --- /dev/null +++ b/packages/Detours.4.0.1/lib/native/include/detver.h @@ -0,0 +1,27 @@ +//////////////////////////////////////////////////////////////////////////////
+//
+// Common version parameters.
+//
+// Microsoft Research Detours Package, Version 4.0.1
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+//
+
+#define _USING_V110_SDK71_ 1
+#include "winver.h"
+#if 0
+#include <windows.h>
+#include <detours.h>
+#else
+#ifndef DETOURS_STRINGIFY
+#define DETOURS_STRINGIFY(x) DETOURS_STRINGIFY_(x)
+#define DETOURS_STRINGIFY_(x) #x
+#endif
+
+#define VER_FILEFLAGSMASK 0x3fL
+#define VER_FILEFLAGS 0x0L
+#define VER_FILEOS 0x00040004L
+#define VER_FILETYPE 0x00000002L
+#define VER_FILESUBTYPE 0x00000000L
+#endif
+#define VER_DETOURS_BITS DETOUR_STRINGIFY(DETOURS_BITS)
|