var
	ISDKERROR_NONE                     = 0,   /**< No error occured. */

	ISDKERROR_INTERNAL_ERROR           = 1,   /**< An internal client error occured. */
	ISDKERROR_INVALID_ARGUMENT         = 2,   /**< An invalid argument was passed to the function. */
	ISDKERROR_INVALID_STATUS           = 3,   /**< The current status does not allow the action. */
	ISDKERROR_UNKNOWN_ID               = 4,   /**< The id is not known. */
	ISDKERROR_NOT_SUBSCRIBED           = 5,   /**< No subscription is available for the service. */
	ISDKERROR_NOT_SUPPORTED            = 6,   /**< The operation is not supported */
	ISDKERROR_NOT_LOGGED_IN            = 7,   /**< The operation is not allowed because you are not logged in. */
	ISDKERROR_IN_USE                   = 8,   /**< The device is in use and can not be changed. */
	ISDKERROR_INVALID_SERVICETYPE      = 9,   /**< The operation is not available for the service. */

	ISDKERROR_AUTHENTICATION_FAILED    = 10,  /**< Authentication failed. */
	ISDKERROR_BUSY                     = 11,  /**< The participant is busy. */
	ISDKERROR_CANCELLED                = 12,  /**< The call was cancelled. */
	ISDKERROR_CLIENT_ERROR             = 13,  /**< The client made an error. */
	ISDKERROR_NETWORK_ERROR            = 14,  /**< A network error occured. */
	ISDKERROR_REJECTED                 = 15,  /**< The call was rejected. */
	ISDKERROR_SERVER_ERROR             = 16,  /**< An server side error occured. */
	ISDKERROR_TIMEOUT                  = 17,  /**< The operation or call timed out. */
	ISDKERROR_UNAVAILABLE              = 18,  /**< The contact is unavailable. */

	ISDKERROR_DUPLICATE                = 19,  /**< An object with the same identifier already exists. */
	ISDKERROR_GROUP_NOT_EMPTY          = 20,  /**< The group is not empty and cannot be deleted. */

	ISDKERROR_AMBIGUOUS                = 25,  /**< The call callee address was ambiguous. */
	ISDKERROR_FAILURE_GLOBAL           = 26,  /**< A global error occured (i.e. the request cannot be fulfilled at any server. */
	ISDKERROR_FORBIDDEN                = 27,  /**< The call was understood and denied by the proxy. */
	ISDKERROR_IGNORED                  = 28,  /**< The call was ignored. */
	ISDKERROR_METHOD_NOT_ALLOWED       = 29,  /**< The method specified in the request is not allowed. */ 
	ISDKERROR_NOT_ACCEPTABLE           = 30,  /**< The request is not acceptable. */
	ISDKERROR_SERVICE_UNAVAILABLE      = 31,  /**< The server is temporarily unable to process the request. */
	ISDKERROR_UNAVAILABLE_TEMPORARILY  = 32,  /**< The callee was successfully contacted but is temporary unavailable. */
	ISDKERROR_UNSUPPORTED_MEDIA_TYPE   = 33,  /**< The format of message body of the request is not supported by the server. */

	ISDKERROR_INVALID_URL              = 50,  /**< A required url is not valid or not available */

	ISDKERROR_FILETRANSFER_EMPTY       = 100, /**< The file transfer failed because the file is empty */
	ISDKERROR_FILETRANSFER_CANCELLED   = 101, /**< The file transfer failed because it was cancelled. */
	ISDKERROR_FILETRANSFER_DUPLICATE   = 102, /**< The file transfer failed because the file is already being transferred. */
	ISDKERROR_FILETRANSFER_FAILED      = 103, /**< The file transfer failed for an unknown reason */
	ISDKERROR_NETMEETING_NOT_INSTALLED = 110, /**< Netmeeting is not installed. */
	ISDKERROR_NETMEETING_NOT_CAPABLE   = 111, /**< The call does not have any netmeeting capabilities. */
	ISDKERROR_NETMEETING_IN_USE        = 112, /**< Netmeeting is currently in use by another application or another contact. */

	ISDKERROR_RESULT_NOTSIZED          = 254, /**< The result value param needs to be resized properly before attempting this call again. */
	ISDKERROR_NOT_YET_IMPLEMENTED      = 255, /**< The functionality is not yet implemented. */
	ISDKERROR_UNINITIALIZED            = 256,  /**< The function failed because the intellivic sdk was not yet initialized. */
	
	
	R_EXCEPTION                        = 999, /**< Exception occured. */
	R_USER_INVALID                     = 998, /**< invalid user/pwd combination */
	R_FORM_MANDATORY                   = 997, /**< mandatory field */
	R_INVALID_EMAILADDRESS             = 996, /**< not a valid emailaddress */
  R_UNKNOWN_USER                     = 995, /**< unregistered user */
	R_PWDMAILED_OK                     = 994, /**< password mail succesfull */
	R_FAILED_EMAIL                     = 993, /**< failed to send passwd mail */
	R_FAILED_ADDGROUP                  = 992, /**< failed to add new contact group */	
	R_VERIFICATION_REQUIRED            = 991, /**< verification checkbox needs to be checked */
	R_FAILED_ADDCONTACT                = 990, /**< add contact failed */
	R_FAILED_EDITCONTACT               = 989, /**< edit contact failed */
	R_INVALID_STARTDATE                = 988, /**< invalid start date */
	R_INVALID_STOPDATE                 = 987, /**< invalid stop date */
	R_INVALID_STARTSTOPDATE            = 986, /**< stopdate must be higher than startdate */
	R_FAILED_CREATE_CONFERENCE         = 985, /**< failed to create conference */
	R_ADDED_CONFERENCE                 = 984, /**< succesfully added a conference */
	R_DUPLICATE_CONFERENCE             = 983, /**< duplicate value */
	R_TOO_MANY_ATS                     = 982, /**< too many @'s in uri */
	R_NO_LOGOUT                        = 981, /**< could not log off use */
	R_FAILED_ADDWATCHER                = 980 /**< failed to add contact as watcher */
	
;