mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-04-23 01:04:44 +00:00
15 lines
309 B
C++
Vendored
15 lines
309 B
C++
Vendored
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Detours Test Program (x86.asm of disas.exe)
|
|
//
|
|
// Microsoft Research Detours Package
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
|
|
static int value = 0;
|
|
|
|
extern "C" void TestCodes()
|
|
{
|
|
value++;
|
|
}
|