Go to the documentation of this file.
26 #include "../tapctl/basic.h"
31 #pragma warning(disable: 4200)
void msica_arg_seq_init(_Inout_ struct msica_arg_seq *seq)
Initializes argument sequence.
void msica_arg_seq_add_head(_Inout_ struct msica_arg_seq *seq, _In_z_ LPCWSTR argument)
Inserts argument to the beginning of the argument sequence.
struct msica_arg * next
Pointer to the next argument in the sequence.
WCHAR val[]
Zero terminated argument string.
struct msica_arg * head
Pointer to the first argument in the sequence.
struct msica_arg * tail
Pointer to the last argument in the sequence.
LPWSTR msica_arg_seq_join(_In_ const struct msica_arg_seq *seq)
Join arguments of the argument sequence into a space delimited string.
void msica_arg_seq_free(_Inout_ struct msica_arg_seq *seq)
Frees argument sequence.
void msica_arg_seq_add_tail(_Inout_ struct msica_arg_seq *seq, _Inout_ LPCWSTR argument)
Appends argument to the end of the argument sequence.