idle.h | idle.h | |||
---|---|---|---|---|
skipping to change at line 29 | skipping to change at line 29 | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU General Public License for more details. | * GNU General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | |||
* along with this program; if not, write to the Free Software | * along with this program; if not, write to the Free Software | |||
* 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_IDLE_H_ | #ifndef _PURPLE_IDLE_H_ | |||
#define _PURPLE_IDLE_H_ | #define _PURPLE_IDLE_H_ | |||
#include <time.h> | ||||
/** | /** | |||
* Idle UI operations. | * Idle UI operations. | |||
*/ | */ | |||
typedef struct | typedef struct | |||
{ | { | |||
time_t (*get_time_idle)(void); | time_t (*get_time_idle)(void); | |||
void (*_purple_reserved1)(void); | void (*_purple_reserved1)(void); | |||
void (*_purple_reserved2)(void); | void (*_purple_reserved2)(void); | |||
void (*_purple_reserved3)(void); | void (*_purple_reserved3)(void); | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 2 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 (6) | #define PURPLE_MINOR_VERSION (6) | |||
/** 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 | |||