roomlist.h | roomlist.h | |||
---|---|---|---|---|
skipping to change at line 60 | skipping to change at line 60 | |||
*/ | */ | |||
typedef enum | typedef enum | |||
{ | { | |||
PURPLE_ROOMLIST_FIELD_BOOL, | PURPLE_ROOMLIST_FIELD_BOOL, | |||
PURPLE_ROOMLIST_FIELD_INT, | PURPLE_ROOMLIST_FIELD_INT, | |||
PURPLE_ROOMLIST_FIELD_STRING /**< We do a g_strdup on the passed val ue if it's this type. */ | PURPLE_ROOMLIST_FIELD_STRING /**< We do a g_strdup on the passed val ue if it's this type. */ | |||
} PurpleRoomlistFieldType; | } PurpleRoomlistFieldType; | |||
#include "account.h" | #include "account.h" | |||
#include "glib.h" | #include <glib.h> | |||
/************************************************************************** / | /************************************************************************** / | |||
/** Data Structures * / | /** Data Structures * / | |||
/************************************************************************** / | /************************************************************************** / | |||
/** | /** | |||
* Represents a list of rooms for a given connection on a given protocol. | * Represents a list of rooms for a given connection on a given protocol. | |||
*/ | */ | |||
struct _PurpleRoomlist { | struct _PurpleRoomlist { | |||
PurpleAccount *account; /**< The account this list belongs to. */ | PurpleAccount *account; /**< The account this list belongs to. */ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
version.h | version.h | |||
---|---|---|---|---|
skipping to change at line 32 | skipping to change at line 32 | |||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-130 1 USA | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-130 1 USA | |||
*/ | */ | |||
#ifndef _PURPLE_VERSION_H_ | #ifndef _PURPLE_VERSION_H_ | |||
#define _PURPLE_VERSION_H_ | #define _PURPLE_VERSION_H_ | |||
/** The major version of the running libpurple. */ | /** The major version of the running libpurple. */ | |||
#define PURPLE_MAJOR_VERSION (2) | #define PURPLE_MAJOR_VERSION (2) | |||
/** The minor version of the running libpurple. */ | /** The minor version of the running libpurple. */ | |||
#define PURPLE_MINOR_VERSION (7) | #define PURPLE_MINOR_VERSION (7) | |||
/** The micro version of the running libpurple. */ | /** The micro version of the running libpurple. */ | |||
#define PURPLE_MICRO_VERSION (0) | #define PURPLE_MICRO_VERSION (1) | |||
#define PURPLE_VERSION_CHECK(x,y,z) ((x) == PURPLE_MAJOR_VERSION && \ | #define PURPLE_VERSION_CHECK(x,y,z) ((x) == PURPLE_MAJOR_VERSION && \ | |||
((y ) < PURPLE_MINOR_VERSION || \ | ((y ) < PURPLE_MINOR_VERSION || \ | |||
(( y) == PURPLE_MINOR_VERSION && (z) <= PURPLE_MICRO_VERSION))) | (( y) == PURPLE_MINOR_VERSION && (z) <= PURPLE_MICRO_VERSION))) | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif | #endif | |||
/** | /** | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||