X-Git-Url: http://git.dolda2000.com/gitweb/?a=blobdiff_plain;f=include%2Fdoldaconnect%2Fuilib.h;h=0894f1a2e4f7199cdba28e1d40a7a2a85a7e1db3;hb=735f4b1a8de997d577d2fb9ecef23974d5e7dac6;hp=25cfc59c7f4a55ad8127584324e5aa7e451ce81b;hpb=113b3e9a2de42d3d0f511fb1e0e6a2543369f9db;p=doldaconnect.git diff --git a/include/doldaconnect/uilib.h b/include/doldaconnect/uilib.h index 25cfc59..0894f1a 100644 --- a/include/doldaconnect/uilib.h +++ b/include/doldaconnect/uilib.h @@ -3,6 +3,8 @@ #include +#define DC_LATEST 2 + struct dc_response { struct dc_response *next, *prev; @@ -10,7 +12,7 @@ struct dc_response wchar_t *cmdname; void *data; void *internal; - struct + struct dc_respline { int argc; wchar_t **argv; @@ -48,9 +50,10 @@ int dc_getstate(void); int dc_queuecmd(int (*callback)(struct dc_response *), void *data, ...); int dc_handleread(void); int dc_handlewrite(void); -int dc_connect(char *host, int port); +int dc_connect(char *host); struct dc_intresp *dc_interpret(struct dc_response *resp); void dc_freeires(struct dc_intresp *ires); +int dc_checkprotocol(struct dc_response *resp, int revision); const char *dc_gethostname(void); #endif