mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 06:51:26 +12:00
18 lines
306 B
C++
18 lines
306 B
C++
#pragma once
|
|
#ifdef _WIN32
|
|
|
|
#include <util/types.hpp>
|
|
|
|
// Validates that system modules are properly installed
|
|
// Only relevant for WIN32
|
|
class WIN32_module_verifier
|
|
{
|
|
void run_module_verification();
|
|
|
|
WIN32_module_verifier() = default;
|
|
|
|
public:
|
|
static void run();
|
|
};
|
|
|
|
#endif // _WIN32
|