9 lines
175 B
C++
9 lines
175 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#define ERROR_INVALID_PARAMETER -1
|
|
|
|
extern "C" {
|
|
wchar_t** wine_parse_command_line(const wchar_t *cmdline, int *numargs, uint32_t* error);
|
|
}
|