summaryrefslogtreecommitdiffstats
path: root/thirdparties/wince/include/libxml/nanoftp.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparties/wince/include/libxml/nanoftp.h')
-rwxr-xr-xthirdparties/wince/include/libxml/nanoftp.h140
1 files changed, 70 insertions, 70 deletions
diff --git a/thirdparties/wince/include/libxml/nanoftp.h b/thirdparties/wince/include/libxml/nanoftp.h
index e3c28a0..9a63cd2 100755
--- a/thirdparties/wince/include/libxml/nanoftp.h
+++ b/thirdparties/wince/include/libxml/nanoftp.h
@@ -7,7 +7,7 @@
*
* Author: Daniel Veillard
*/
-
+
#ifndef __NANO_FTP_H__
#define __NANO_FTP_H__
@@ -20,7 +20,7 @@ extern "C" {
#endif
/**
- * ftpListCallback:
+ * ftpListCallback:
* @userData: user provided data for the callback
* @filename: the file name (including "->" when links are shown)
* @attrib: the attribute string
@@ -38,13 +38,13 @@ extern "C" {
* Note that only one of year and day:minute are specified.
*/
typedef void (*ftpListCallback) (void *userData,
- const char *filename, const char *attrib,
- const char *owner, const char *group,
- unsigned long size, int links, int year,
- const char *month, int day, int hour,
- int minute);
+ const char *filename, const char *attrib,
+ const char *owner, const char *group,
+ unsigned long size, int links, int year,
+ const char *month, int day, int hour,
+ int minute);
/**
- * ftpDataCallback:
+ * ftpDataCallback:
* @userData: the user provided context
* @data: the data received
* @len: its size in bytes
@@ -52,89 +52,89 @@ typedef void (*ftpListCallback) (void *userData,
* A callback for the xmlNanoFTPGet command.
*/
typedef void (*ftpDataCallback) (void *userData,
- const char *data,
- int len);
+ const char *data,
+ int len);
/*
* Init
*/
XMLPUBFUN void XMLCALL
- xmlNanoFTPInit (void);
-XMLPUBFUN void XMLCALL
- xmlNanoFTPCleanup (void);
+xmlNanoFTPInit (void);
+XMLPUBFUN void XMLCALL
+xmlNanoFTPCleanup (void);
/*
* Creating/freeing contexts.
*/
-XMLPUBFUN void * XMLCALL
- xmlNanoFTPNewCtxt (const char *URL);
-XMLPUBFUN void XMLCALL
- xmlNanoFTPFreeCtxt (void * ctx);
-XMLPUBFUN void * XMLCALL
- xmlNanoFTPConnectTo (const char *server,
- int port);
+XMLPUBFUN void * XMLCALL
+xmlNanoFTPNewCtxt (const char *URL);
+XMLPUBFUN void XMLCALL
+xmlNanoFTPFreeCtxt (void * ctx);
+XMLPUBFUN void * XMLCALL
+xmlNanoFTPConnectTo (const char *server,
+ int port);
/*
* Opening/closing session connections.
*/
-XMLPUBFUN void * XMLCALL
- xmlNanoFTPOpen (const char *URL);
-XMLPUBFUN int XMLCALL
- xmlNanoFTPConnect (void *ctx);
-XMLPUBFUN int XMLCALL
- xmlNanoFTPClose (void *ctx);
-XMLPUBFUN int XMLCALL
- xmlNanoFTPQuit (void *ctx);
-XMLPUBFUN void XMLCALL
- xmlNanoFTPScanProxy (const char *URL);
-XMLPUBFUN void XMLCALL
- xmlNanoFTPProxy (const char *host,
- int port,
- const char *user,
- const char *passwd,
- int type);
-XMLPUBFUN int XMLCALL
- xmlNanoFTPUpdateURL (void *ctx,
- const char *URL);
+XMLPUBFUN void * XMLCALL
+xmlNanoFTPOpen (const char *URL);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPConnect (void *ctx);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPClose (void *ctx);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPQuit (void *ctx);
+XMLPUBFUN void XMLCALL
+xmlNanoFTPScanProxy (const char *URL);
+XMLPUBFUN void XMLCALL
+xmlNanoFTPProxy (const char *host,
+ int port,
+ const char *user,
+ const char *passwd,
+ int type);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPUpdateURL (void *ctx,
+ const char *URL);
/*
* Rather internal commands.
*/
-XMLPUBFUN int XMLCALL
- xmlNanoFTPGetResponse (void *ctx);
-XMLPUBFUN int XMLCALL
- xmlNanoFTPCheckResponse (void *ctx);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPGetResponse (void *ctx);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPCheckResponse (void *ctx);
/*
* CD/DIR/GET handlers.
*/
-XMLPUBFUN int XMLCALL
- xmlNanoFTPCwd (void *ctx,
- const char *directory);
-XMLPUBFUN int XMLCALL
- xmlNanoFTPDele (void *ctx,
- const char *file);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPCwd (void *ctx,
+ const char *directory);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPDele (void *ctx,
+ const char *file);
-XMLPUBFUN int XMLCALL
- xmlNanoFTPGetConnection (void *ctx);
-XMLPUBFUN int XMLCALL
- xmlNanoFTPCloseConnection(void *ctx);
-XMLPUBFUN int XMLCALL
- xmlNanoFTPList (void *ctx,
- ftpListCallback callback,
- void *userData,
- const char *filename);
-XMLPUBFUN int XMLCALL
- xmlNanoFTPGetSocket (void *ctx,
- const char *filename);
-XMLPUBFUN int XMLCALL
- xmlNanoFTPGet (void *ctx,
- ftpDataCallback callback,
- void *userData,
- const char *filename);
-XMLPUBFUN int XMLCALL
- xmlNanoFTPRead (void *ctx,
- void *dest,
- int len);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPGetConnection (void *ctx);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPCloseConnection(void *ctx);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPList (void *ctx,
+ ftpListCallback callback,
+ void *userData,
+ const char *filename);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPGetSocket (void *ctx,
+ const char *filename);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPGet (void *ctx,
+ ftpDataCallback callback,
+ void *userData,
+ const char *filename);
+XMLPUBFUN int XMLCALL
+xmlNanoFTPRead (void *ctx,
+ void *dest,
+ int len);
#ifdef __cplusplus
}
OpenPOWER on IntegriCloud