forked from mia/Aegisub
More reporter tweaks to make it actually build and run on Windows.
Originally committed to SVN as r3619.
This commit is contained in:
parent
d677b85b66
commit
e7465e7519
3 changed files with 10 additions and 5 deletions
|
@ -231,7 +231,7 @@ public:
|
|||
/// Firewall installed
|
||||
/// @return true/false
|
||||
/// @retval 1,0
|
||||
virtual wxString FireWall()=0;
|
||||
virtual wxString Firewall()=0;
|
||||
|
||||
/// DLL versions used
|
||||
/// @return wxXmlNode of DLLs used
|
||||
|
|
|
@ -67,11 +67,11 @@ wxString PlatformWindows::ServicePack() {
|
|||
return "";
|
||||
};
|
||||
|
||||
wxString PlatformWindows::GraphicsVersion() {
|
||||
wxString PlatformWindows::DriverGraphicsVersion() {
|
||||
return "";
|
||||
};
|
||||
|
||||
wxString PlatformWindows::DShowFilters() {
|
||||
wxString PlatformWindows::DirectShowFilters() {
|
||||
return "";
|
||||
};
|
||||
|
||||
|
@ -82,6 +82,11 @@ wxString PlatformWindows::AntiVirus() {
|
|||
wxString PlatformWindows::Firewall() {
|
||||
return "";
|
||||
};
|
||||
|
||||
wxString PlatformWindows::DLLVersions() {
|
||||
return "";
|
||||
};
|
||||
|
||||
wxString PlatformWindows::OpenGLVendor() {
|
||||
return "";
|
||||
};
|
||||
|
|
|
@ -45,8 +45,8 @@ public:
|
|||
|
||||
// Windows Specific
|
||||
virtual wxString ServicePack();
|
||||
virtual wxString GraphicsVersion();
|
||||
virtual wxString DShowFilters();
|
||||
virtual wxString DriverGraphicsVersion();
|
||||
virtual wxString DirectShowFilters();
|
||||
virtual wxString AntiVirus();
|
||||
virtual wxString Firewall();
|
||||
virtual wxString DLLVersions();
|
||||
|
|
Loading…
Reference in a new issue