Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / dll / cpl / input / layout_list.h
1 #pragma once
2
3 #include "input.h"
4
5 typedef struct _LAYOUT_LIST_NODE
6 {
7 WCHAR *pszName;
8
9 DWORD dwId;
10 DWORD dwSpecialId;
11
12 struct _LAYOUT_LIST_NODE *pPrev;
13 struct _LAYOUT_LIST_NODE *pNext;
14 } LAYOUT_LIST_NODE;
15
16 VOID
17 LayoutList_Create(VOID);
18
19 VOID
20 LayoutList_Destroy(VOID);
21
22 LAYOUT_LIST_NODE*
23 LayoutList_GetByHkl(HKL hkl);
24
25 LAYOUT_LIST_NODE*
26 LayoutList_GetFirst(VOID);