mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
304b25bbb6
svn path=/trunk/; revision=7667
23 lines
367 B
C
23 lines
367 B
C
/* $Id $
|
|
*
|
|
* Compatibility header
|
|
*/
|
|
|
|
#ifndef REACTOS_WINUSER_H
|
|
#define REACTOS_WINUSER_H
|
|
|
|
#include <w32api.h>
|
|
|
|
#if (__W32API_MAJOR_VERSION < 2 || __W32API_MINOR_VERSION < 5)
|
|
|
|
#ifdef WINVER
|
|
#undef WINVER
|
|
#endif
|
|
|
|
#define WINVER 0x0501
|
|
|
|
#endif /* __W32API_MAJOR_VERSION < 2 || __W32API_MINOR_VERSION < 5 */
|
|
|
|
#include_next <winuser.h>
|
|
|
|
#endif /* REACTOS_WINUSER_H */
|