Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RegistryUtils.h « FileManager « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2799061ed6459cdac670ed3c3cd3726f4ad3fb5a (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
40
// RegistryUtils.h

#include "Common/StringConvert.h"

#ifndef __REGISTRYUTILS_H
#define __REGISTRYUTILS_H

void SaveRegLang(const CSysString &langFile);
void ReadRegLang(CSysString &langFile);

void SaveRegEditor(const CSysString &langFile);
void ReadRegEditor(CSysString &langFile);

void SaveShowDots(bool showDots);
bool ReadShowDots();

void SaveShowRealFileIcons(bool show);
bool ReadShowRealFileIcons();

void SaveShowSystemMenu(bool showSystemMenu);
bool ReadShowSystemMenu();

void SaveFullRow(bool enable);
bool ReadFullRow();

void SaveShowGrid(bool enable);
bool ReadShowGrid();

void SaveAlternativeSelection(bool enable);
bool ReadAlternativeSelection();

/*
void SaveSingleClick(bool enable);
bool ReadSingleClick();

void SaveUnderline(bool enable);
bool ReadUnderline();
*/

#endif