mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-04-29 14:07:57 +03:00
18 lines
525 B
C++
18 lines
525 B
C++
![]() |
//////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Detours Test Program (tdll2x.cpp of talloc.exe/tdll2x.dll)
|
||
|
//
|
||
|
// Microsoft Research Detours Package
|
||
|
//
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////// DLL Stuff
|
||
|
//
|
||
|
__declspec(dllexport) unsigned long __stdcall Dll2Function(unsigned long Value)
|
||
|
{
|
||
|
return Value + 1;
|
||
|
}
|
||
|
|
||
|
///////////////////////////////////////////////////////////////// End of File.
|