mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
b00ecdcab9
From now on for ReactOS related contributions only the organization e-mail shall be used and also reverse the order of my real full name.
29 lines
715 B
C
29 lines
715 B
C
/*
|
|
* PROJECT: ReactOS Utility Manager (Accessibility)
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Pre-compiled header file
|
|
* COPYRIGHT: Copyright 2019-2020 George Bișoc (george.bisoc@reactos.org)
|
|
*/
|
|
|
|
#ifndef _UTILMAN_H
|
|
#define _UTILMAN_H
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <windows.h>
|
|
#include <strsafe.h>
|
|
|
|
#include "resource.h"
|
|
|
|
/* DEFINES ********************************************************************/
|
|
|
|
#define MAX_BUFFER 256
|
|
|
|
/* TYPES **********************************************************************/
|
|
|
|
typedef BOOL (WINAPI *EXECDLGROUTINE)(VOID);
|
|
|
|
#endif /* _UTILMAN_H */
|
|
|
|
/* EOF */
|