mirror of
https://github.com/aaru-dps/fstester.git
synced 2025-12-16 19:24:39 +00:00
25 lines
395 B
C
25 lines
395 B
C
//
|
|
// Created by claunia on 11/3/21.
|
|
//
|
|
|
|
#ifndef SETTER_SRC_WIN32_OS_H_
|
|
#define SETTER_SRC_WIN32_OS_H_
|
|
|
|
#include <windows.h>
|
|
|
|
#include "win32.h"
|
|
|
|
#ifndef VER_PLATFORM_WIN32s
|
|
#define VER_PLATFORM_WIN32s 0
|
|
#endif
|
|
|
|
#ifndef VER_PLATFORM_WIN32_WINDOWS
|
|
#define VER_PLATFORM_WIN32_WINDOWS 1
|
|
#endif
|
|
|
|
#ifndef VER_PLATFORM_WIN32_NT
|
|
#define VER_PLATFORM_WIN32_NT 2
|
|
#endif
|
|
|
|
#endif // SETTER_SRC_WIN32_OS_H_
|