mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-03-24 18:16:24 +01:00
12 lines
334 B
C
12 lines
334 B
C
/*!
|
|
* @file wmi_interface.h
|
|
* @brief Declarations for functions that deal directly with WMI
|
|
* via the COM interfaces.
|
|
*/
|
|
#ifndef _METERPRETER_SOURCE_EXTENSION_EXTAPI_WMI_INTERFACE_H
|
|
#define _METERPRETER_SOURCE_EXTENSION_EXTAPI_WMI_INTERFACE_H
|
|
|
|
DWORD wmi_query(LPCWSTR lpwDomain, LPWSTR lpwQuery, Packet* response);
|
|
|
|
#endif
|