mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-04-24 10:09:49 +02:00
13 lines
375 B
C
13 lines
375 B
C
/*!
|
|
* @file adsi.h
|
|
* @brief Declarations for ADSI support.
|
|
*/
|
|
#ifndef _METERPRETER_SOURCE_EXTENSION_EXTAPI_ADSI_H
|
|
#define _METERPRETER_SOURCE_EXTENSION_EXTAPI_ADSI_H
|
|
|
|
//DWORD request_adsi_user_enum(Remote *remote, Packet *packet);
|
|
//DWORD request_adsi_computer_enum(Remote *remote, Packet *packet);
|
|
DWORD request_adsi_domain_query(Remote *remote, Packet *packet);
|
|
|
|
#endif
|