comparison src/gtkconv.c @ 13992:0567de116699

[gaim-migrate @ 16566] Having value.h include config.h is bad. It caused plenty of warnings building my plugins, for example. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 25 Jul 2006 01:25:04 +0000
parents f94309c7c480
children 626977ae8869
comparison
equal deleted inserted replaced
13991:87797e287549 13992:0567de116699
6583 # error Unknown size of time_t 6583 # error Unknown size of time_t
6584 #endif 6584 #endif
6585 gaim_value_new(GAIM_TYPE_POINTER), 2, 6585 gaim_value_new(GAIM_TYPE_POINTER), 2,
6586 gaim_value_new(GAIM_TYPE_SUBTYPE, 6586 gaim_value_new(GAIM_TYPE_SUBTYPE,
6587 GAIM_SUBTYPE_LOG), 6587 GAIM_SUBTYPE_LOG),
6588 gaim_value_new(GAIM_TYPE_TIME_T)); 6588 #if SIZEOF_TIME_T == 4
6589 gaim_value_new(GAIM_TYPE_INT));
6590 #elif SIZE_OF_TIME_T == 8
6591 gaim_value_new(GAIM_TYPE_INT64));
6592 #else
6593 # error Unknown size of time_t
6594 #endif
6589 6595
6590 gaim_signal_register(handle, "displaying-im-msg", 6596 gaim_signal_register(handle, "displaying-im-msg",
6591 gaim_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_POINTER, 6597 gaim_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_POINTER,
6592 gaim_value_new(GAIM_TYPE_BOOLEAN), 5, 6598 gaim_value_new(GAIM_TYPE_BOOLEAN), 5,
6593 gaim_value_new(GAIM_TYPE_SUBTYPE, 6599 gaim_value_new(GAIM_TYPE_SUBTYPE,