summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_locale.h
blob: 0eea4065cf7929fe9015bf537e76646214867f65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef _NT_LOCALE_H_
#define _NT_LOCALE_H_

#include "nt_abi.h"

typedef uint32_t nt_lcid;
typedef uint16_t nt_langid;


typedef int32_t __stdcall ntapi_zw_query_default_locale(
	__in	unsigned char	thread_or_system,
	__out	nt_lcid *	locale);


typedef int32_t __stdcall ntapi_zw_set_default_locale(
	__in	unsigned char	thread_or_system,
	__in	nt_lcid *	locale);


typedef int32_t __stdcall ntapi_zw_query_default_ui_language(
	__out	nt_langid *	lang_id);


typedef int32_t __stdcall ntapi_zw_set_default_ui_language(
	__in	nt_langid *	lang_id);


typedef int32_t __stdcall ntapi_zw_query_install_ui_language(
	__out	nt_langid *	lang_id);

#endif