common.h 389 B

123456789101112131415161718192021
  1. /*
  2. Native File Dialog
  3. Internal, common across platforms
  4. http://www.frogtoss.com/labs
  5. */
  6. #ifndef _NFD_COMMON_H
  7. #define _NFD_COMMON_H
  8. #define NFD_MAX_STRLEN 256
  9. #define _NFD_UNUSED(x) ((void)x)
  10. void *NFDi_Malloc( size_t bytes );
  11. void NFDi_Free( void *ptr );
  12. void NFDi_SetError( const char *msg );
  13. void NFDi_SafeStrncpy( char *dst, const char *src, size_t maxCopy );
  14. #endif