| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //////////////////////////////////////////////////////////////////////////////
- //
- // Presence of this DLL (detoured.dll) marks a process as detoured.
- //
- // Microsoft Research Detours Package, Version 2.1.
- //
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //
- #include "winver.h"
- VS_VERSION_INFO VERSIONINFO
- FILEVERSION 2,1,0,207
- PRODUCTVERSION 2,1,0,207
- FILEFLAGSMASK 0x3fL
- FILEFLAGS 0x0L
- FILEOS 0x00040004L
- FILETYPE 0x00000002L
- FILESUBTYPE 0x00000000L
- BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0"
- BEGIN
- VALUE "CompanyName", "Microsoft Corporation"
- VALUE "FileDescription", "Marks process modified by Detours technology."
- VALUE "FileVersion", "Express Version 2.1 Build_216"
- VALUE "InternalName", "DETOURED.DLL"
- VALUE "LegalCopyright", "Copyright (C) Microsoft Corporation. All rights reserved."
- VALUE "OriginalFilename", "DETOURED.DLL"
- VALUE "ProductName", "Microsoft Research Detours Package"
- VALUE "ProductVersion", "Express Version 2.1 Build_216"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
- END
|