pykd/test/targetapp/targetapp.cpp
SND\EreTIk_cp 03e052a418 [+] pyDia: find[Ex] tests
git-svn-id: https://pykd.svn.codeplex.com/svn@69934 9b283d60-5439-405e-af05-b73fd8c4d996
2017-11-08 17:06:26 +04:00

39 lines
565 B
C++

#include "stdafx.h"
#include <intrin.h>
#include <iostream>
#include "utils.h"
void FuncWithName0()
{
}
void FuncWithName1()
{
}
int _tmain(int argc, _TCHAR* argv[])
{
try
{
// Let test scripts to execute
__debugbreak();
FuncWithName0();
FuncWithName1();
}
catch(std::exception & ex)
{
std::cout << ex.what() << std::endl;
return 1;
}
catch (...)
{
std::cout << "Unknown error" << std::endl;
return 1;
}
return 0;
}