Guest User

Untitled

a guest
Dec 16th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. CURLcode curl_easy_setopt_sbyteptr(struct Curl_easy *data, CURLoption tag, int8_t* p)
  2. {
  3. return curl_easy_setopt(data, tag, p);
  4. }
  5. CURLcode curl_easy_setopt_byteptr(struct Curl_easy *data, CURLoption tag, uint8_t* p)
  6. {
  7. return curl_easy_setopt(data, tag, p);
  8. }
  9. CURLcode curl_easy_setopt_int(struct Curl_easy *data, CURLoption tag, int32_t p)
  10. {
  11. return curl_easy_setopt(data, tag, p);
  12. }
  13. CURLcode curl_easy_setopt_uint(struct Curl_easy *data, CURLoption tag, uint32_t p)
  14. {
  15. return curl_easy_setopt(data, tag, p);
  16. }
  17. CURLcode curl_easy_setopt_long(struct Curl_easy *data, CURLoption tag, int64_t p)
  18. {
  19. return curl_easy_setopt(data, tag, p);
  20. }
  21. CURLcode curl_easy_setopt_ulong(struct Curl_easy *data, CURLoption tag, uint64_t p)
  22. {
  23. return curl_easy_setopt(data, tag, p);
  24. }
  25. CURLcode curl_easy_setopt_voidptr(struct Curl_easy *data, CURLoption tag, void* p)
  26. {
  27. return curl_easy_setopt(data, tag, p);
  28. }
Add Comment
Please, Sign In to add comment