summaryrefslogtreecommitdiffstats
path: root/src/common/win32/registry.h
blob: fdaf9708a9b63fbd9ca974320416756c90bfbc65 (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
/*
 * Ceph - scalable distributed file system
 *
 * Copyright (C) 2019 SUSE LINUX GmbH
 *
 * This is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License version 2.1, as published by the Free Software
 * Foundation.  See file COPYING.
 *
 */

#include "include/compat.h"
#include "common/ceph_context.h"


class RegistryKey {
public:
  RegistryKey(CephContext *cct_, HKEY hRootKey, LPCTSTR strKey, bool create_value);
  ~RegistryKey();

  static remove(CephContext *cct_, HKEY hRootKey, LPCTSTR strKey);

  int flush();

  int set(LPCTSTR lpValue, DWORD data);
  int set(LPCTSTR lpValue, std::string data);

  int get(LPCTSTR lpValue, bool& value);
  int get(LPCTSTR lpValue, DWORD& value);
  int get(LPCTSTR lpValue, std::string& value);

  HKEY hKey = NULL;
  bool missingKey = false;

private:
  CephContext *cct;
};