reactos/base/applications/regedit/regedit.h
Katayama Hirofumi MZ 9a51c8e6c6
[MSPAINT][NOTEPAD][REGEDIT] Don't use CRTDBG for these apps (#5788)
Don't include <crtdbg.h>.
Don't use _CrtSetDbgFlag.
2023-10-12 22:53:02 +09:00

21 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 */