我想调用一个需要回调的函数:
cookie_monster->SetCookieWithOptionsAsync(
ext_url, "dummy=value", options, &callback_function));
如果我不想调用任何回调函数怎么办?有类似 set 的东西NULL
吗?
cookie_monster->SetCookieWithOptionsAsync(
ext_url, "dummy=value", options, NULL);
我想调用一个需要回调的函数:
cookie_monster->SetCookieWithOptionsAsync(
ext_url, "dummy=value", options, &callback_function));
如果我不想调用任何回调函数怎么办?有类似 set 的东西NULL
吗?
cookie_monster->SetCookieWithOptionsAsync(
ext_url, "dummy=value", options, NULL);