Signed-off-by: Hugh McMaster hugh.mcmaster@outlook.com --- 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 a0c93534df..c9143c1767 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 bf963a7425..58f707b854 100644 --- a/programs/regedit/regproc.h +++ b/programs/regedit/regproc.h @@ -24,6 +24,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, ...); -