mirror of
https://github.com/ComodoSecurity/openedr/
synced 2026-06-06 15:24:33 +00:00
21 lines
419 B
C
21 lines
419 B
C
//
|
|
// edrav2.libprocmon project
|
|
//
|
|
#pragma once
|
|
|
|
#include "extheaders.h"
|
|
#include "objects.h"
|
|
// Enable objects creation
|
|
CMD_IMPORT_LIBRARY_OBJECTS(libprocmon)
|
|
|
|
// Declaration of linking dependences (statical libraries)
|
|
#ifdef _MSC_VER
|
|
#pragma comment(lib, "libprocmon.lib")
|
|
#pragma comment(lib, "madCHook.lib")
|
|
#else
|
|
#error Declaration of linking dependences is not implemented for this compiler
|
|
#endif // _MSC_VER
|
|
|
|
|
|
|