reg: Merge common header #includes into reg.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 2021-03-18 22:36:49 +11:00 committed by Alexandre Julliard
parent ab94653e8b
commit 7803c53cfe
7 changed files with 4 additions and 18 deletions

View File

@ -18,8 +18,6 @@
#include <errno.h>
#include <stdlib.h>
#include <windows.h>
#include <wine/heap.h>
#include "reg.h"
static DWORD wchar_get_type(const WCHAR *type_name)

View File

@ -16,8 +16,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windows.h>
#include <wine/heap.h>
#include "reg.h"
int reg_delete(HKEY root, WCHAR *path, WCHAR *key_name, WCHAR *value_name,

View File

@ -16,12 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <wine/heap.h>
#include "reg.h"
static void write_file(HANDLE hFile, const WCHAR *str)

View File

@ -16,15 +16,11 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windows.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <wine/debug.h>
#include <wine/heap.h>
#include "reg.h"
#include <wine/debug.h>
WINE_DEFAULT_DEBUG_CHANNEL(reg);

View File

@ -17,8 +17,6 @@
*/
#include <stdio.h>
#include <windows.h>
#include <wine/heap.h>
#include "reg.h"
static const WCHAR *reg_type_to_wchar(DWORD type)

View File

@ -16,11 +16,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windows.h>
#include <stdlib.h>
#include <wine/debug.h>
#include <wine/heap.h>
#include "reg.h"
#include <wine/debug.h>
WINE_DEFAULT_DEBUG_CHANNEL(reg);

View File

@ -19,6 +19,8 @@
#ifndef __REG_H__
#define __REG_H__
#include <windows.h>
#include <wine/heap.h>
#include "resource.h"
#define MAX_SUBKEY_LEN 257