mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-04-24 10:09:49 +02:00
12 lines
323 B
C
12 lines
323 B
C
/*!
|
|
* @file service.h
|
|
* @brief Declarations for service management functions
|
|
*/
|
|
#ifndef _METERPRETER_SOURCE_EXTENSION_EXTAPI_SERVICE_H
|
|
#define _METERPRETER_SOURCE_EXTENSION_EXTAPI_SERVICE_H
|
|
|
|
DWORD request_service_enum(Remote *remote, Packet *packet);
|
|
DWORD request_service_query(Remote *remote, Packet *packet);
|
|
|
|
#endif
|