mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 01:58:27 +08:00
16 lines
348 B
C++
16 lines
348 B
C++
#include <windows.h>
|
|
#include <iostream>
|
|
//#include <stdlib.h>
|
|
//#include <stdio.h>
|
|
using namespace std;
|
|
int main(void)
|
|
{
|
|
HKEY hKey;
|
|
if(RegOpenKey(HKEY_LOCAL_MACHINE, TEXT("Software/Wine"), &hKey == ERROR_SUCCESS)){
|
|
cout << "Run In Wine" << endl;
|
|
return 0;
|
|
}
|
|
cout << "Don't 'Run In Wine" << endl;
|
|
return 0;
|
|
}
|