Files
stellarbear-YaraSharp/YaraSharp/Stdafx.h
T
2018-04-08 16:37:39 +03:00

24 lines
635 B
C++

// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently,
// but are changed infrequently
#pragma once
#include <msclr\marshal.h>
#include <msclr\marshal_cppstd.h>
#include <msclr\lock.h>
using namespace System;
using namespace System::IO;
using namespace System::Text;
using namespace msclr::interop;
using namespace System::Collections::Generic;
using namespace System::Runtime::InteropServices;
#include "yara.h"
#include "Exceptions.h"
#include "Context.h"
#include "Rules.h"
#include "Compiler.h"
#include "Result.h"
#include "Scanner.h"
#include "YaraSharp.h"