home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / nlsdata1.c < prev    next >
C/C++ Source or Header  |  1998-06-17  |  756b  |  32 lines

  1. /***
  2. *nlsdata1.c - globals for international library - small globals
  3. *
  4. *       Copyright (c) 1991-1997, 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. *******************************************************************************/
  12.  
  13.  
  14. #include <stdlib.h>
  15. #include <nlsint.h>
  16.  
  17. /*
  18.  *  Value of MB_CUR_MAX macro.
  19.  */
  20. int __mb_cur_max = 1;
  21.  
  22. /*
  23.  *  Localized decimal point string.
  24.  */
  25. char __decimal_point[] = ".";
  26.  
  27. /*
  28.  *  Decimal point length, not including terminating null.
  29.  */
  30. size_t __decimal_point_length = 1;
  31.  
  32.