Xlocale.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: Xlocale.h,v 1.4 2001/02/09 02:03:38 xorgcvs Exp $ */
  2. /*
  3. Copyright 1991, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included
  10. in all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  12. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  13. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  14. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
  15. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  16. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  17. OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall
  19. not be used in advertising or otherwise to promote the sale, use or
  20. other dealings in this Software without prior written authorization
  21. from The Open Group.
  22. */
  23. /* $XFree86: xc/lib/X11/Xlocale.h,v 1.4 2001/12/14 19:54:09 dawes Exp $ */
  24. #ifndef _XLOCALE_H_
  25. #define _XLOCALE_H_
  26. #include <X11/Xfuncproto.h>
  27. #include <X11/Xosdefs.h>
  28. #ifndef X_LOCALE
  29. #include <locale.h>
  30. #else
  31. #define LC_ALL      0
  32. #define LC_COLLATE  1
  33. #define LC_CTYPE    2
  34. #define LC_MONETARY 3
  35. #define LC_NUMERIC  4
  36. #define LC_TIME     5
  37. _XFUNCPROTOBEGIN
  38. extern char *_Xsetlocale(
  39.     int /* category */,
  40.     _Xconst char* /* name */
  41. );
  42. _XFUNCPROTOEND
  43. #define setlocale _Xsetlocale
  44. #include <stddef.h>
  45. #endif /* X_LOCALE */
  46. #endif /* _XLOCALE_H_ */