1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00

enhancement and fixes for D binding

This commit is contained in:
Marenz 2011-05-16 00:01:13 +02:00
parent ea3b9cbbf9
commit 917ef4cff2
2 changed files with 40 additions and 40 deletions

View file

@ -90,12 +90,16 @@ extern (C) MatchVar varTypes[];
/** /**
* Get the type of variable name. * Get the type of variable name.
*/ */
Bool isRoutingVar(char *name, size_t len); Bool psyc_isRoutingVar(char *name, size_t len);
alias psyc_isRoutingVar isRoutingVar;
/** /**
* Get the type of variable name. * Get the type of variable name.
*/ */
Type getVarType(char *name, size_t len); Type psyc_getVarType(char *name, size_t len);
alias psyc_getVarType getVarType;
/** /**
* Checks if long keyword string inherits from short keyword string. * Checks if long keyword string inherits from short keyword string.

View file

@ -35,8 +35,6 @@ enum ParseRC
ERROR_LENGTH = -2, ERROR_LENGTH = -2,
/// Error in packet. /// Error in packet.
ERROR = -1, ERROR = -1,
// Success, used internally.
SUCCESS = 0,
/// Buffer contains insufficient amount of data. /// Buffer contains insufficient amount of data.
/// Fill another buffer and concatenate it with the end of the current buffer, /// Fill another buffer and concatenate it with the end of the current buffer,
/// from the cursor position to the end. /// from the cursor position to the end.
@ -75,10 +73,8 @@ enum ParseRC
/// Content parsing done in one go, value contains the whole content. /// Content parsing done in one go, value contains the whole content.
/// Used when ROUTING_ONLY is set. /// Used when ROUTING_ONLY is set.
CONTENT = 10, CONTENT = 10,
// Binary value parsing complete, used internally. /// Finished parsing packet.
COMPLETE = 11, COMPLETE = 11
// Binary value parsing incomplete, used internally.
INCOMPLETE = 12,
} }
/** /**