mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
21 lines
411 B
C
21 lines
411 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS System Libraries
|
|
* FILE: lib/rtl/rtl.h
|
|
* PURPOSE: Run-Time Libary Header
|
|
* PROGRAMMER: Alex Ionescu
|
|
*/
|
|
|
|
#ifndef RTL_VISTA_H
|
|
#define RTL_VISTA_H
|
|
|
|
#undef _WIN32_WINNT
|
|
#undef WINVER
|
|
#define _WIN32_WINNT 0x600
|
|
#define WINVER 0x600
|
|
|
|
/* Main RTL Header */
|
|
#include "rtl.h"
|
|
|
|
#endif /* RTL_VISTA_H */
|