WindowsOSData.h#
↰ Parent directory (OS\Windows
)
Contains implementation details required by the Microsoft Windows version of PVRShell.
Includes#
Windows.h
Namespaces#
Classes#
Defines#
Source Code#
#pragma once
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <Windows.h>
namespace pvr {
namespace platform {
struct WindowsOSData
{
int cmdShow;
WindowsOSData() : cmdShow(SW_SHOW) {}
};
} // namespace platform
} // namespace pvr