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>
This commit is contained in:
Hugh McMaster 2018-05-21 13:34:52 +00:00 committed by Alexandre Julliard
parent ff1f664d08
commit f6476c79e3
2 changed files with 4 additions and 3 deletions

View file

@ -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);

View file

@ -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, ...);