glibcompat.h 896 B

123456789101112131415161718192021
  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, 28, 0)
  9. void g_slist_free_full (GSList * list, GDestroyNotify free_func);
  10. void g_list_free_full (GList * list, GDestroyNotify free_func);
  11. #endif /* ! GLIB_CHECK_VERSION (2, 28, 0) */
  12. /*** inline functions ****************************************************************************/
  13. #endif /* MC_GLIBCOMPAT_H */