reactos/reactos/base/applications/regedit/regedit.h
Stefan Ginsberg 1861d15230 - MSTSC: Don't redefine BOOL
- Regedit: Don't include basetyps.h. Not needed and it just breaks things. Also don't include aclui.h as we...for some reason...implement the required parts of that API locally

svn path=/trunk/; revision=37422
2008-11-17 21:52:55 +00:00

29 lines
599 B
C

#ifndef _REGEDIT_H
#define _REGEDIT_H
#define WIN32_LEAN_AND_MEAN /* Exclude rarely-used stuff from Windows headers */
#include <windows.h>
#include <commctrl.h>
#include <shellapi.h>
#include <shlwapi.h>
#include <stdlib.h>
#include <tchar.h>
#include <process.h>
#include <stdio.h>
#include <limits.h>
#include <accctrl.h>
#include <objbase.h>
#include <unknwn.h>
#include <aclapi.h>
#include <commdlg.h>
#include <cderr.h>
#include <ole2.h>
#include <objbase.h>
#include <objsel.h>
#include <assert.h>
#include "main.h"
#include "regproc.h"
#include "hexedit.h"
#include "security.h"
#endif