BlockTheSpot/packages/Detours.4.0.1/lib/native/include/detver.h
Nuzair 987cd4e9df
64 bit patch (#470)
* 64 bit patch

* Fix build issues

* minor changes

* Revert "minor changes"

This reverts commit 1b5a057f23.

* Revert "Fix build issues"

This reverts commit 1d1b8664b3.

* fix code.

* Update Modify.cpp

* disable exception handling

* ResolveNuGetPackages

* Update BlockTheSpot.vcxproj

* Update BlockTheSpot.vcxproj

* Update BlockTheSpot.vcxproj

* fix appveyor compile

* full x64

---------

Co-authored-by: Khunpon Pond <18654771+mrpond@users.noreply.github.com>


x64 code by @ejaxh without you this won't possible!
2023-07-26 12:29:46 +07:00

27 lines
720 B
C

//////////////////////////////////////////////////////////////////////////////
//
// 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)