mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-04-18 07:11:12 +02:00
9 lines
258 B
C
9 lines
258 B
C
#ifndef _METERPRETER_SOURCE_SERVER_LIBLOADER_H
|
|
#define _METERPRETER_SOURCE_SERVER_LIBLOADER_H
|
|
|
|
void *libloader_load_library_mem(char *buffer, char *bufferLength);
|
|
void *libloader_load_library_disk(char *name);
|
|
void *libloader_lookup_sym(char *name);
|
|
|
|
#endif
|