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