我正在从自定义 uRL 协议启动 ac 程序。
自定义 URL 协议对所有参数进行 urlencode 并将它们组合成一个字符串。没有办法解决这个问题。
这是我唯一的 Windows 尝试,但它崩溃了。getopt_long 不喜欢我新创建的 argv。
bool main_init(int argc, char *argv[])
{
// if url protocol
if (strstr(argv[1], "protocol:") != NULL)
{
//decode and remove protocol.
char *decoded = url_decode(argv[1])+9;
// wrap " around original argv[0] and prepend to argv[1]
LPSTR buf[1024];
strcpy(buf, "\"");
strcat(buf, argv[0]);
strcat(buf, "\" ");
strcat(buf, decoded);
// ANSi version of CommandLineToArgvW: http://alter.org.ua/docs/win/args/
argv = CommandLineToArgvA(buf, &argc);
// argv appears correct at this point
}
// protocol causes crash here
int c = getopt_long(argc, argv, optstring, opts, NULL);
}
谢谢。