exfat_config.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (C) 2012-2013 Samsung Electronics Co., Ltd.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version 2
  7. * of the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  17. */
  18. #ifndef _EXFAT_CONFIG_H
  19. #define _EXFAT_CONFIG_H
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. #define OS_NONOS 1
  24. #define OS_LINUX 2
  25. #define FFS_CONFIG_OS OS_LINUX
  26. #define FFS_CONFIG_LITTLE_ENDIAN 1
  27. #define FFS_CONFIG_LEGACY_32BIT_API 0
  28. #define FFS_CONFIG_LEGACY_32BIT_API 0
  29. #define FFS_CONFIG_SUPPORT_CP1250 1
  30. #define FFS_CONFIG_SUPPORT_CP1251 1
  31. #define FFS_CONFIG_SUPPORT_CP1252 1
  32. #define FFS_CONFIG_SUPPORT_CP1253 1
  33. #define FFS_CONFIG_SUPPORT_CP1254 1
  34. #define FFS_CONFIG_SUPPORT_CP1255 1
  35. #define FFS_CONFIG_SUPPORT_CP1256 1
  36. #define FFS_CONFIG_SUPPORT_CP1257 1
  37. #define FFS_CONFIG_SUPPORT_CP1258 1
  38. #define FFS_CONFIG_SUPPORT_CP874 1
  39. #define FFS_CONFIG_SUPPORT_CP932 1
  40. #define FFS_CONFIG_SUPPORT_CP936 1
  41. #define FFS_CONFIG_SUPPORT_CP949 1
  42. #define FFS_CONFIG_SUPPORT_CP950 1
  43. #define FFS_CONFIG_SUPPORT_UTF8 1
  44. #define EXFAT_CONFIG_DISCARD 1
  45. #define EXFAT_CONFIG_KERNEL_DEBUG 1
  46. #define EXFAT_CONFIG_DEBUG_MSG 0
  47. #ifdef __cplusplus
  48. }
  49. #endif
  50. #endif