mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
28 lines
505 B
C
28 lines
505 B
C
#ifndef _REGEDIT_H
|
|
#define _REGEDIT_H
|
|
|
|
#define WIN32_LEAN_AND_MEAN /* Exclude rarely-used stuff from Windows headers */
|
|
#define WIN32_NO_STATUS
|
|
#include <windows.h>
|
|
|
|
#define NTOS_MODE_USER
|
|
#include <ndk/cmtypes.h>
|
|
|
|
#include <commctrl.h>
|
|
#include <shellapi.h>
|
|
#include <shlwapi.h>
|
|
#include <stdio.h>
|
|
#include <aclapi.h>
|
|
#include <commdlg.h>
|
|
#include <cderr.h>
|
|
#include <objsel.h>
|
|
#include <assert.h>
|
|
|
|
#include "main.h"
|
|
#include "regproc.h"
|
|
#include "hexedit.h"
|
|
#include "security.h"
|
|
|
|
#endif
|
|
|
|
/* EOF */
|