Windows Defender Antivirus API
Asked Answered
S

1

12

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.

Sandie answered 23/4, 2017 at 10:29 Comment(3)
Do you have the Windows 8 SDK?Lamee
Yes I have the SDK (even windows 10)Sandie
You have two options: you can either copy the prototypes or you find the files that include them. I copied them from MSDN and it seems to work. I wouldn't recommend using it though, as important parts of the API are obviously undocumented.Monosyllable
U
2

I was looking for that header as well. I found a copy here: https://github.com/hfiref0x/UACME/blob/master/Source/Shared/mpclient.h

Unshapen answered 21/10, 2019 at 10:56 Comment(1)
Note that URL is broken now. I found another one which currently works: github.com/UldisRinkevichs/libmpclient/blob/…Menstruate

© 2022 - 2024 — McMap. All rights reserved.