mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-12 17:48:27 +08:00
8 lines
139 B
C++
8 lines
139 B
C++
#include <iostream>
|
|
#include <Windows.h>
|
|
using namespace std;
|
|
int main(){
|
|
MessageBox(NULL, TEXT("a"), TEXT("A"), 32);
|
|
return 0;
|
|
}
|