mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-03-24 18:16:24 +01:00
17 lines
291 B
C
17 lines
291 B
C
#ifndef _METERPRETER_LIB_ARGS_H
|
|
#define _METERPRETER_LIB_ARGS_H
|
|
|
|
#include "linkage.h"
|
|
|
|
typedef struct
|
|
{
|
|
DWORD currentIndex;
|
|
PCHAR argument;
|
|
CHAR toggle;
|
|
} ArgumentContext;
|
|
|
|
LINKAGE DWORD args_parse(UINT argc, CHAR **argv, PCHAR params,
|
|
ArgumentContext *ctx);
|
|
|
|
#endif
|