-
-
Save junorouse/182439a084c50803f221e13f293a63bf to your computer and use it in GitHub Desktop.
stdafx.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file AntiRanSomware user mode engine | |
* @brief | |
* @ref | |
* @author Yonhgwhan, Roh ([email protected]) | |
* @date 2017/01/21 created. | |
* @copyright All rights reserved by Yonghwan, Roh. | |
**/ | |
#pragma once | |
#include "targetver.h" | |
#include <stdio.h> | |
#include <tchar.h> | |
// | |
// std | |
// | |
#include <sstream> | |
#include <list> | |
#include <vector> | |
#include <string> | |
#include <set> | |
#include <unordered_map> | |
// | |
// boost | |
// | |
#define BOOST_LIB_DIAGNOSTIC | |
#include "boost/lexical_cast.hpp" | |
#include "boost/type_traits.hpp" // boost::remove_pointer | |
#include "boost/noncopyable.hpp" | |
#include "boost/format.hpp" | |
#include "boost/thread.hpp" | |
#include "boost/shared_ptr.hpp" | |
// | |
// windows headers | |
// | |
#include <WinSock2.h> | |
#include <ws2tcpip.h> | |
#include <iphlpapi.h> | |
#include <Windows.h> | |
#include <VersionHelpers.h> | |
#include <crtdbg.h> | |
#include <stdint.h> | |
#include <strsafe.h> | |
#include <winioctl.h> | |
#include <dontuse.h> | |
#include <conio.h> | |
#include <winioctl.h> | |
//#include <winnt.h> | |
// | |
// _my_lib | |
// | |
#include "log.h" | |
#include "Win32Utils.h" | |
#include "scm_context.h" | |
#include "RegistryUtil.h" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment