pykd/test/targetapp/targetapp.cpp
SND\EreTIk_cp 394dfb7816 [+] pyDia: new tests, __getitem__
[~] pyDia: bugfix

git-svn-id: https://pykd.svn.codeplex.com/svn@69946 9b283d60-5439-405e-af05-b73fd8c4d996
2017-11-08 17:06:26 +04:00

50 lines
799 B
C++

#include "stdafx.h"
#include <intrin.h>
#include <iostream>
#include <string>
#include "utils.h"
const ULONG g_constNumValue = 0x5555;
const bool g_constBoolValue = true;
UCHAR g_ucharValue = 1;
USHORT g_ushortValue = 2;
ULONG g_ulongValue = 4;
ULONGLONG g_ulonglongValue = 8;
std::string g_string;
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;
}