Windows NT 4.0 source code leak
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.

38 lines
872 B

4 years ago
  1. /***
  2. *nlsdata1.c - globals for international library - small globals
  3. *
  4. * Copyright (c) 1991-1992, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * This module contains the globals: __mb_cur_max, _decimal_point,
  8. * _decimal_point_length. This module is always required.
  9. * This module is separated from nlsdatax.c for granularity.
  10. *
  11. *Revision History:
  12. * 12-01-91 ETC Created.
  13. * 04-03-92 PLM Changes tdef.h to tchar.h
  14. * 08-18-92 KRS Rip out _tflag--not used.
  15. *
  16. *******************************************************************************/
  17. #include <stdlib.h>
  18. #include <nlsint.h>
  19. /*
  20. * Value of MB_CUR_MAX macro.
  21. */
  22. unsigned short __mb_cur_max = 1;
  23. /*
  24. * Localized decimal point string.
  25. */
  26. char _decimal_point[] = ".";
  27. #ifdef _INTL
  28. /*
  29. * Decimal point length, not including terminating null.
  30. */
  31. size_t _decimal_point_length = 1;
  32. #endif /* _INTL */