regedit: Add support for REG_QWORD type.
[wine.git] / programs / regedit / main.h
blob6ad7835e4df74c05efd4850770fde2a6bd23540c
1 /*
2 * Regedit definitions
4 * Copyright (C) 2002 Robert Dickenson <robd@reactos.org>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __MAIN_H__
22 #define __MAIN_H__
24 #include <stdio.h>
25 #include "resource.h"
27 #define STATUS_WINDOW 2001
28 #define TREE_WINDOW 2002
29 #define LIST_WINDOW 2003
31 #define SPLIT_WIDTH 5
33 #define MAX_NEW_KEY_LEN 128
34 #define KEY_MAX_LEN 1024
36 #define REG_FORMAT_5 1
37 #define REG_FORMAT_4 2
39 /* Pop-Up Menus */
40 #define PM_COMPUTER 0
41 #define PM_TREEVIEW 1
42 #define PM_NEW_VALUE 2
43 #define PM_MODIFY_VALUE 3
45 /* HexEdit Class */
46 #define HEM_SETDATA (WM_USER+0)
47 #define HEM_GETDATA (WM_USER+1)
49 /******************************************************************************/
51 enum OPTION_FLAGS {
52 OPTIONS_AUTO_REFRESH = 0x01,
53 OPTIONS_READ_ONLY_MODE = 0x02,
54 OPTIONS_CONFIRM_ON_DELETE = 0x04,
55 OPTIONS_SAVE_ON_EXIT = 0x08,
56 OPTIONS_DISPLAY_BINARY_DATA = 0x10,
57 OPTIONS_VIEW_TREE_ONLY = 0x20,
58 OPTIONS_VIEW_DATA_ONLY = 0x40,
61 enum SEARCH_FLAGS {
62 SEARCH_WHOLE = 0x01,
63 SEARCH_KEYS = 0x02,
64 SEARCH_VALUES = 0x04,
65 SEARCH_CONTENT = 0x08,
68 typedef struct {
69 HWND hWnd;
70 HWND hTreeWnd;
71 HWND hListWnd;
72 int nFocusPanel; /* 0: left 1: right */
73 int nSplitPos;
74 WINDOWPLACEMENT pos;
75 WCHAR szPath[MAX_PATH];
76 } ChildWnd;
77 extern ChildWnd* g_pChildWnd;
79 typedef struct tagLINE_INFO
81 WCHAR *name;
82 DWORD dwValType;
83 void *val;
84 size_t val_len;
85 } LINE_INFO;
87 /*******************************************************************************
88 * Global Variables:
90 extern HINSTANCE hInst;
91 extern HWND hFrameWnd;
92 extern HMENU hMenuFrame;
93 extern HWND hStatusBar;
94 extern HMENU hPopupMenus;
95 extern HFONT hFont;
96 extern enum OPTION_FLAGS Options;
98 extern const WCHAR szChildClass[];
99 extern WCHAR g_pszDefaultValueName[];
101 extern DWORD g_columnToSort;
102 extern BOOL g_invertSort;
103 extern WCHAR *g_currentPath;
104 extern HKEY g_currentRootKey;
106 /* Registry class names and their indexes */
107 extern const WCHAR* reg_class_namesW[];
108 #define INDEX_HKEY_LOCAL_MACHINE 0
109 #define INDEX_HKEY_USERS 1
110 #define INDEX_HKEY_CLASSES_ROOT 2
111 #define INDEX_HKEY_CURRENT_CONFIG 3
112 #define INDEX_HKEY_CURRENT_USER 4
113 #define INDEX_HKEY_DYN_DATA 5
115 /* about.c */
116 void ShowAboutBox(HWND hWnd);
118 /* childwnd.c */
119 LPWSTR GetItemFullPath(HWND hwndTV, HTREEITEM hItem, BOOL bFull);
120 LRESULT CALLBACK ChildWndProc(HWND, UINT, WPARAM, LPARAM);
122 /* edit.c */
123 BOOL CreateKey(HWND hwnd, HKEY hKeyRoot, LPCWSTR keyPath, LPWSTR newKeyName);
124 BOOL CreateValue(HWND hwnd, HKEY hKeyRoot, LPCWSTR keyPath, DWORD valueType, LPWSTR valueName);
125 BOOL ModifyValue(HWND hwnd, HKEY hKeyRoot, LPCWSTR keyPath, LPCWSTR valueName);
126 BOOL DeleteKey(HWND hwnd, HKEY hKeyRoot, LPCWSTR keyPath);
127 BOOL DeleteValue(HWND hwnd, HKEY hKeyRoot, LPCWSTR keyPath, LPCWSTR valueName);
128 BOOL RenameValue(HWND hwnd, HKEY hRootKey, LPCWSTR keyPath, LPCWSTR oldName, LPCWSTR newName);
129 BOOL RenameKey(HWND hwnd, HKEY hRootKey, LPCWSTR keyPath, LPCWSTR newName);
130 int WINAPIV messagebox(HWND hwnd, int buttons, int titleId, int resId, ...);
132 /* framewnd.c */
133 LRESULT CALLBACK FrameWndProc(HWND, UINT, WPARAM, LPARAM);
134 void SetupStatusBar(HWND hWnd, BOOL bResize);
135 void UpdateStatusBar(void);
137 /* hexedit.c */
138 void HexEdit_Register(void);
140 /* listview.c */
141 BOOL update_listview_path(const WCHAR *path);
142 void format_value_data(HWND hwndLV, int index, DWORD type, void *data, DWORD size);
143 int AddEntryToList(HWND hwndLV, WCHAR *Name, DWORD dwValType, void *ValBuf, DWORD dwCount, int pos);
144 void OnGetDispInfo(NMLVDISPINFOW *plvdi);
145 HWND CreateListView(HWND hwndParent, UINT id);
146 int CALLBACK CompareFunc(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort);
147 BOOL RefreshListView(HWND hwndLV, HKEY hKeyRoot, LPCWSTR keyPath, LPCWSTR highlightValue);
148 HWND StartValueRename(HWND hwndLV);
149 LPWSTR GetItemText(HWND hwndLV, UINT item);
150 WCHAR *GetValueName(HWND hwndLV);
151 BOOL ListWndNotifyProc(HWND hWnd, WPARAM wParam, LPARAM lParam, BOOL *Result);
152 BOOL IsDefaultValue(HWND hwndLV, int i);
154 /* regedit.c */
155 void WINAPIV output_message(unsigned int id, ...);
156 void WINAPIV error_exit(unsigned int id, ...);
158 /* regproc.c */
159 void *heap_xalloc(size_t size);
160 void *heap_xrealloc(void *buf, size_t size);
161 char *GetMultiByteString(const WCHAR *strW);
162 BOOL import_registry_file(FILE *reg_file);
163 void delete_registry_key(WCHAR *reg_key_name);
164 BOOL export_registry_key(WCHAR *file_name, WCHAR *path, DWORD format);
166 /* treeview.c */
167 HWND CreateTreeView(HWND hwndParent, LPWSTR pHostName, UINT id);
168 BOOL RefreshTreeView(HWND hWndTV);
169 BOOL OnTreeExpanding(HWND hWnd, NMTREEVIEWW* pnmtv);
170 LPWSTR GetItemPath(HWND hwndTV, HTREEITEM hItem, HKEY* phRootKey);
171 BOOL DeleteNode(HWND hwndTV, HTREEITEM hItem);
172 HTREEITEM InsertNode(HWND hwndTV, HTREEITEM hItem, LPWSTR name);
173 HWND StartKeyRename(HWND hwndTV);
174 HTREEITEM FindPathInTree(HWND hwndTV, LPCWSTR lpKeyName);
175 HTREEITEM FindNext(HWND hwndTV, HTREEITEM hItem, LPCWSTR sstring, int mode, int *row);
177 #endif /* __MAIN_H__ */