summaryrefslogtreecommitdiff
path: root/support/dktools/dk4wregk.h
blob: cbb3f592d1a40ee073be43d32dc41d7c8df6a12d (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
32
33
34
35
36
37
38
39
/*
Copyright 2020, Dirk Krause. All rights reserved.
SPDX-License-Identifier:	BSD-3-Clause
*/

#ifndef DK4WREGK_H_INCLUDED
#define	DK4WREGK_H_INCLUDED	1

/**	@file	dk4wregk.h	Keys for Windows registry access.
*/


/**	Numeric identifiers for registry hives.
*/
enum {
  /**	HKEY_LOCAL_MACHINE.
  */
  DK4_WREGKEY_HKLM	=	0,

  /**	HKEY_CURRENT_USER.
  */
  DK4_WREGKEY_HKCU,

  /**	HKEY_CLASSES_ROOT.
  */
  DK4_WREGKEY_HKCL,

  /**	HKEY_USERS.
  */
  DK4_WREGKEY_KHUS,

  /**	HKEY_CURRENT_CONFIG.
  */
  DK4_WREGKEY_HKCC
};


#endif