Module: wine Branch: master Commit: f6476c79e39e73084bd10e8ab50b7f7ac42ed33b URL: https://source.winehq.org/git/wine.git/?a=commit;h=f6476c79e39e73084bd10e8ab...
Author: Hugh McMaster hugh.mcmaster@outlook.com Date: Mon May 21 13:34:52 2018 +0000
regedit: Move regedit.c functions from regproc.h to main.h.
Signed-off-by: Hugh McMaster hugh.mcmaster@outlook.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
programs/regedit/main.h | 4 ++++ programs/regedit/regproc.h | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/programs/regedit/main.h b/programs/regedit/main.h index a0c9353..c9143c1 100644 --- a/programs/regedit/main.h +++ b/programs/regedit/main.h @@ -141,6 +141,10 @@ extern LPCWSTR GetValueName(HWND hwndLV); extern BOOL ListWndNotifyProc(HWND hWnd, WPARAM wParam, LPARAM lParam, BOOL *Result); extern BOOL IsDefaultValue(HWND hwndLV, int i);
+/* regedit.c */ +void WINAPIV output_message(unsigned int id, ...); +void WINAPIV error_exit(unsigned int id, ...); + /* regproc.c */ void *heap_xalloc(size_t size); void *heap_xrealloc(void *buf, size_t size); diff --git a/programs/regedit/regproc.h b/programs/regedit/regproc.h index f57379b..c5e3a84 100644 --- a/programs/regedit/regproc.h +++ b/programs/regedit/regproc.h @@ -23,6 +23,3 @@
#define REG_FORMAT_5 1 #define REG_FORMAT_4 2 - -void WINAPIV output_message(unsigned int id, ...); -void WINAPIV error_exit(unsigned int id, ...);