🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
388 B

  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