mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
9a51c8e6c6
Don't include <crtdbg.h>. Don't use _CrtSetDbgFlag.
20 lines
425 B
C
20 lines
425 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>
|
|
#include <commctrl.h>
|
|
#include <shlwapi.h>
|
|
#include <stdio.h>
|
|
#include <aclapi.h>
|
|
#include <shellapi.h>
|
|
#include <strsafe.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "main.h"
|
|
#include "hexedit.h"
|
|
#include "security.h"
|
|
#include "wine/debug.h"
|
|
|
|
#endif /* _REGEDIT_H */
|