Changeset 67b6766
- Timestamp:
- 2006-05-09T07:20:36Z (19 years ago)
- Branches:
- master
- Children:
- ba9edaa
- Parents:
- ecf8fa8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
bitlbee.h
recf8fa8 r67b6766 58 58 /* The following functions should not be used if we want to maintain Windows compatibility... */ 59 59 #undef free 60 #define free __PLEASE_USE_THE_GLIB_MEMORY_ALLOCATION_SYSTEM_ INSTEAD__60 #define free __PLEASE_USE_THE_GLIB_MEMORY_ALLOCATION_SYSTEM__ 61 61 #undef malloc 62 #define malloc __PLEASE_USE_THE_GLIB_MEMORY_ALLOCATION_SYSTEM_ INSTEAD__62 #define malloc __PLEASE_USE_THE_GLIB_MEMORY_ALLOCATION_SYSTEM__ 63 63 #undef calloc 64 #define calloc __PLEASE_USE_THE_GLIB_MEMORY_ALLOCATION_SYSTEM_ INSTEAD__64 #define calloc __PLEASE_USE_THE_GLIB_MEMORY_ALLOCATION_SYSTEM__ 65 65 #undef realloc 66 #define realloc __PLEASE_USE_THE_GLIB_MEMORY_ALLOCATION_SYSTEM_ INSTEAD__66 #define realloc __PLEASE_USE_THE_GLIB_MEMORY_ALLOCATION_SYSTEM__ 67 67 #undef strdup 68 #define strdup __PLEASE_USE_THE_GLIB_STRDUP_FUNCTIONS_SYSTEM_ INSTEAD__68 #define strdup __PLEASE_USE_THE_GLIB_STRDUP_FUNCTIONS_SYSTEM__ 69 69 #undef strndup 70 #define strndup __PLEASE_USE_THE_GLIB_STRDUP_FUNCTIONS_SYSTEM_ INSTEAD__70 #define strndup __PLEASE_USE_THE_GLIB_STRDUP_FUNCTIONS_SYSTEM__ 71 71 #undef snprintf 72 #define snprintf __PLEASE_USE_G_SNPRINTF_ INSTEAD__72 #define snprintf __PLEASE_USE_G_SNPRINTF__ 73 73 #undef strcasecmp 74 #define strcasecmp __PLEASE_USE_G_STRCASECMP_ INSTEAD__74 #define strcasecmp __PLEASE_USE_G_STRCASECMP__ 75 75 #undef strncasecmp 76 #define strncasecmp __PLEASE_USE_G_STRNCASECMP_INSTEAD__ 76 #define strncasecmp __PLEASE_USE_G_STRNCASECMP__ 77 78 /* And the following functions shouldn't be used anymore to keep compatibility 79 with other event handling libs than GLib. */ 80 #undef g_timeout_add 81 #define g_timeout_add __PLEASE_USE_B_TIMEOUT_ADD__ 82 #undef g_timeout_add_full 83 #define g_timeout_add_full __PLEASE_USE_B_TIMEOUT_ADD__ 84 #undef g_source_remove 85 #define g_source_remove __PLEASE_USE_B_SOURCE_REMOVE__ 86 #undef g_source_remove_by_user_data 87 #define g_source_remove_by_user_data __PLEASE_USE_B_SOURCE_REMOVE_BY_USER_DATA__ 88 #undef g_main_run 89 #define g_main_run __PLEASE_USE_B_MAIN_RUN__ 90 #undef g_main_quit 91 #define g_main_quit __PLEASE_USE_B_MAIN_QUIT__ 77 92 78 93 #ifndef F_OK
Note: See TracChangeset
for help on using the changeset viewer.