netcdf-c/oc2/occurlfunctions.h
dmh 774428f2fd There are a number of cases in the oc code
where a procedure is defined to return int
and really returns OCerror. This causes
problems in AIX. Fixed those I could find.
2014-05-08 14:13:51 -06:00

24 lines
516 B
C

/*
* occurlfunction.h
*
* Created on: Mar 5, 2009
* Author: rikki
*/
#ifndef _CURLFUNCTION_H_
#define _CURLFUNCTION_H_
extern void oc_curl_protocols(struct OCGLOBALSTATE*);
extern CURLcode ocset_curl_flags(OCstate*);
extern OCerror ocset_user_password(OCstate*);
extern OCerror ocset_proxy(OCstate*);
extern OCerror ocset_ssl(OCstate*);
extern void oc_curl_setup(OCstate* state);
extern void oc_curl_debug(OCstate* state);
extern void oc_curl_printerror(OCstate* state);
#endif /*_CURLFUNCTION_H_*/