Reading the documentation of the windows defender API, for example in MpManagerOpen
Function:
https://msdn.microsoft.com/en-us/library/windows/desktop/dn920115(v=vs.85).aspx
I see that the required include file is MpClient.h
. However I couldn't find it anywhere. Does anyone know where can I find this file, or simply how to use the API without it (without copying the prototypes and structs to my own code), in a C program?
Thanks in advance.