glibcompat.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. #ifndef MC_GLIBCOMPAT_H
  2. #define MC_GLIBCOMPAT_H
  3. /*** typedefs(not structures) and defined constants **********************************************/
  4. /*** enums ***************************************************************************************/
  5. /*** structures declarations (and typedefs of structures)*****************************************/
  6. /*** global variables defined in .c file *********************************************************/
  7. /*** declarations of public functions ************************************************************/
  8. #if ! GLIB_CHECK_VERSION (2, 13, 0)
  9. gboolean g_unichar_iszerowidth (gunichar);
  10. #endif /* ! GLIB_CHECK_VERSION (2, 13, 0) */
  11. #if ! GLIB_CHECK_VERSION (2, 16, 0)
  12. int g_strcmp0 (const char *str1, const char *str2);
  13. #endif /* ! GLIB_CHECK_VERSION (2, 16, 0) */
  14. #if ! GLIB_CHECK_VERSION (2, 28, 0)
  15. void g_slist_free_full (GSList * list, GDestroyNotify free_func);
  16. void g_list_free_full (GList * list, GDestroyNotify free_func);
  17. #endif /* ! GLIB_CHECK_VERSION (2, 28, 0) */
  18. /*** inline functions ****************************************************************************/
  19. #endif /* MC_GLIBCOMPAT_H */