glibcompat.h 869 B

1234567891011121314151617181920212223
  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, 7, 0)
  12. gboolean g_file_set_contents (const gchar *, const gchar *, gssize, GError **);
  13. #endif /* ! GLIB_CHECK_VERSION (2, 7, 0) */
  14. #endif /* MC_GLIBCOMPAT_H */