- Formatting fixes
[reactos.git] / rosapps / sysutils / regexpl / RegistryExplorer.h
1 /* $Id$ */
2
3 #ifndef _REGISTRY_EXPLORER_H__INCLUDED
4 #define _REGISTRY_EXPLORER_H__INCLUDED
5
6 #define CURRENT_VERSION _T("0.20+")
7 #define EMAIL _T("nedko@users.sourceforge.net")
8
9 //#define __L(x) L ## x
10 //#define _L(x) __L(x)
11
12 #define PRODUCT_NAME _T("Registry Explorer")
13
14 #define HELLO_MSG _T("ReactOS ") PRODUCT_NAME _T(" version ") CURRENT_VERSION _T("\n")\
15 _T("License is GNU GPL. Type `help gpl` for details.\n\n")
16
17 #define NOWARANTY_MSG _T("Registry Explorer comes with ABSOLUTELY NO WARRANTY\n")\
18 _T("This is free software, and you are welcome to redistribute it\n")\
19 _T("under certain conditions; type `help gpl' for details.\n")
20
21 #define COPYRIGHT_MSG _T("Copyright (C) 2000-2005 Nedko Arnaudov\n")
22
23 #define CREDITS_MSG _T("Registry Explorer is written by Nedko Arnaudov\n")\
24 _T("Special thanks to ReactOS team.\n")
25
26 #define BUGS_MSG _T("Please report bugs to ") EMAIL _T("\n")
27
28 #define VER_MSG COPYRIGHT_MSG\
29 _T("\n")\
30 NOWARANTY_MSG\
31 _T("\n")\
32 CREDITS_MSG\
33 _T("\n")\
34 BUGS_MSG
35
36 #define GOODBYE_MSG _T("\nThank you for using Registry Explorer !!!\n")
37
38 //#define COMMAND_LENGTH(cmd) (sizeof(DIR_CMD)-sizeof(TCHAR))/sizeof(TCHAR)
39 #define COMMAND_LENGTH(cmd) _tcslen(cmd)
40
41 #define PROMPT_BUFFER_SIZE 1024
42
43 #define COMMAND_NA_ON_ROOT _T(" is not applicable to root key.\n")
44
45 #define SETTINGS_REGISTRY_KEY _T("Software\\Registry Explorer\\")
46 #define NORMAL_TEXT_ATTRIBUTES_VALUE_NAME _T("Normal Text Color")
47 #define COMMAND_TEXT_ATTRIBUTES_VALUE_NAME _T("Command Text Color")
48 #define PROMPT_VALUE_NAME _T("Prompt")
49
50 #define DEFAULT_ESCAPE_CHAR _T('^')
51
52 #endif //#ifndef _REGISTRY_EXPLORER_H__INCLUDED