Skip to content

Instantly share code, notes, and snippets.

@somma
Created July 19, 2017 07:34
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save somma/7378503e3cb937f3007512d9893a76bd to your computer and use it in GitHub Desktop.
Save somma/7378503e3cb937f3007512d9893a76bd to your computer and use it in GitHub Desktop.
stdafx.h
/**
* @file AntiRanSomware user mode engine
* @brief
* @ref
* @author Yonhgwhan, Roh (fixbrain@gmail.com)
* @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