2006-11-08 11:47:44 +00:00
|
|
|
#ifndef _REGEDIT_H
|
|
|
|
#define _REGEDIT_H
|
|
|
|
|
2024-07-17 10:40:32 +00:00
|
|
|
#define COBJMACROS
|
2006-11-08 11:47:44 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN /* Exclude rarely-used stuff from Windows headers */
|
2011-06-26 16:19:33 +00:00
|
|
|
#define WIN32_NO_STATUS
|
2006-11-08 11:47:44 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
#include <shlwapi.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <aclapi.h>
|
2022-11-02 18:02:14 +00:00
|
|
|
#include <shellapi.h>
|
2023-01-20 01:34:46 +00:00
|
|
|
#include <strsafe.h>
|
2023-03-20 22:26:04 +00:00
|
|
|
#include <stdlib.h>
|
2013-01-24 23:00:42 +00:00
|
|
|
|
2006-11-08 11:47:44 +00:00
|
|
|
#include "main.h"
|
|
|
|
#include "hexedit.h"
|
|
|
|
#include "security.h"
|
2022-11-02 18:02:14 +00:00
|
|
|
#include "wine/debug.h"
|
2012-10-03 22:42:34 +00:00
|
|
|
|
2014-01-07 17:08:52 +00:00
|
|
|
#endif /* _REGEDIT_H */
|