Remove pointer from part arg

This commit is contained in:
fnky
2026-02-22 19:31:09 +01:00
parent 93d4e56e0b
commit ae45458193

View File

@@ -130,7 +130,7 @@ foreign lib {
* error code. The passed in string will be copied. Passing a NULL instead of
* a part string, clears that part.
*/
url_set :: proc(handle: ^CURLU, what: ^UPart, part: cstring, flags: UFlags) -> Ucode ---
url_set :: proc(handle: ^CURLU, what: UPart, part: cstring, flags: UFlags) -> Ucode ---
/*
* curl_url_strerror() turns a CURLUcode value into the equivalent human
@@ -138,4 +138,4 @@ foreign lib {
* messages.
*/
url_strerror :: proc(Ucode) -> cstring ---
}
}