projects
/
reactos.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
fba55ee8d3d4d499139e0e49f27e2009e62f6f24
[reactos.git]
/
reactos
/
base
/
applications
/
regedit
/
regedit.h
1
#ifndef _REGEDIT_H
2
#define _REGEDIT_H
3
4
#define WIN32_LEAN_AND_MEAN
/* Exclude rarely-used stuff from Windows headers */
5
#define WIN32_NO_STATUS
6
#include <windows.h>
7
8
#define NTOS_MODE_USER
9
#include <ndk/cmtypes.h>
10
11
#include <commctrl.h>
12
#include <shellapi.h>
13
#include <shlwapi.h>
14
#include <stdlib.h>
15
//#include <tchar.h>
16
#include <process.h>
17
#include <stdio.h>
18
#include <limits.h>
19
#include <accctrl.h>
20
#include <unknwn.h>
21
#include <aclapi.h>
22
#include <commdlg.h>
23
#include <cderr.h>
24
#include <ole2.h>
25
#include <objbase.h>
26
#include <objsel.h>
27
#include <assert.h>
28
#include
"main.h"
29
#include
"regproc.h"
30
#include
"hexedit.h"
31
#include
"security.h"
32
33
#endif
34
35
/* EOF */