Leaked source code of windows server 2003
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.

53 lines
1.4 KiB

  1. /***
  2. *initcoll.c - contains __init_collate
  3. *
  4. * Copyright (c) 1991-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * Contains the locale-category initialization function: __init_collate().
  8. *
  9. * Each initialization function sets up locale-specific information
  10. * for their category, for use by functions which are affected by
  11. * their locale category.
  12. *
  13. * *** For internal use by setlocale() only ***
  14. *
  15. *Revision History:
  16. * 12-08-91 ETC Created.
  17. * 12-20-91 ETC Minor beautification for consistency.
  18. * 12-18-92 CFW Ported to Cuda tree, changed _CALLTYPE4 to _CRTAPI3.
  19. * 04-06-93 SKS Replace _CRTAPI* with __cdecl
  20. * 05-20-93 GJF Include windows.h, not individual win*.h files
  21. * 05-24-93 CFW Clean up file (brief is evil).
  22. * 09-15-93 CFW Use ANSI conformant "__" names.
  23. * 09-06-94 CFW Remove _INTL switch.
  24. *
  25. *******************************************************************************/
  26. #include <windows.h>
  27. #include <locale.h>
  28. #include <setlocal.h>
  29. /***
  30. *int __init_collate() - initialization for LC_COLLATE locale category.
  31. *
  32. *Purpose:
  33. * The LC_COLLATE category currently requires no initialization.
  34. *
  35. *Entry:
  36. * None.
  37. *
  38. *Exit:
  39. * 0 success
  40. * 1 fail
  41. *
  42. *Exceptions:
  43. *
  44. *******************************************************************************/
  45. int __cdecl __init_collate (
  46. void
  47. )
  48. {
  49. return 0;
  50. }