mirror of
https://github.com/stellarbear/YaraSharp
synced 2026-06-08 17:36:09 +00:00
24 lines
635 B
C++
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" |