GREAT for tet adventures
- Code: Select all
#include <iostream>
#include <conio.h> //For the getch() to stop program
#include <windows.h> //WIN API lib
using namespace std; //Standard name space
int main(int argc,char *argv[])
{
//Win API code to start the program in full screen mode
keybd_event(VK_MENU,0x38,0,0);
keybd_event(VK_RETURN,0x1c,0,0);
keybd_event(VK_RETURN,0x1c,KEYEVENTF_KEYUP,0);
keybd_event(VK_MENU,0x38,KEYEVENTF_KEYUP,0);
//Proof of it working!
cout << "Brought to you by Argio" << endl;
getch();
}

