deep-wine-runner/demo/checkruninwine/main.cpp
2022-10-30 09:51:07 +08:00

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;
}