mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-04-23 01:04:44 +00:00
23 lines
524 B
C++
Vendored
23 lines
524 B
C++
Vendored
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Detours Test Program (tryman.cpp of tryman.exe)
|
|
//
|
|
// Microsoft Research Detours Package
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
|
|
#include <windows.h>
|
|
|
|
extern int WINAPI Test3264(int arg);
|
|
|
|
int __cdecl main(int argc, char ** argv)
|
|
{
|
|
(void)argv;
|
|
int ret = 0;
|
|
|
|
ret = Test3264(argc);
|
|
return ret == 0 ? ret : 0;
|
|
}
|
|
//
|
|
///////////////////////////////////////////////////////////////// End of File.
|