Etterna 0.74.4
Loading...
Searching...
No Matches
VideoDriverInfo.h
1/* GetVideoDriverInfo - Get information about Win32 video drivers. */
2
3#ifndef VIDEO_DRIVER_INFO_H
4#define VIDEO_DRIVER_INFO_H
5
7{
8 std::string sProvider;
9 std::string sDescription;
10 std::string sVersion;
11 std::string sDate;
12 std::string sDeviceID;
13};
14
15std::string
16GetPrimaryVideoName();
17bool
18GetVideoDriverInfo(int iCardno, VideoDriverInfo& info);
19std::string
20GetPrimaryVideoDriverName();
21
22#endif
Definition VideoDriverInfo.h:7