有用的C/C++的Windows操作
Windows.h庫
示例
#include<stdio.h>
#include<windows.h>
void main()
{
printf("helloworld");
//第一個引數為0,表示依賴的視窗的編號,設為0就是系統彈出的;第二個引數是對話方塊的內容,第三個是對話方塊的標題,第四個是對話方塊的型別,設為0就可
MessageBox(0,"nihao", "helloll", 0);
//c語言下雙斜槓代表一個斜槓
//開啟檔案
//ShellExecute(0,"open", "E:\\1.txt", 0, 0, 1);
//開啟檔案
//ShellExecute(0,"open", "http://www.baidu.com", 0, 0, 1);
//開啟可執行件
//ShellExecute(0,"open", "C:\\Program Files (x86)\\SublimeText3\\sublime_text.exe", 0, 0, 1);
//開啟系統自帶檔案,不需要註明路徑
//ShellExecute(0,"open", "notepad", 0, 0, 1);
//將檔案內容列印到控制檯
//ShellExecute(0,"print", "E:\\1.txt", 0, 0, 1);
//開啟資料夾
//ShellExecute(0,"open", "c:\\Document\\", 0, 0, 1);
//ShellExecute(0,"open", "c:\\", 0, 0, 6);
//呼叫郵件工具
//ShellExecute(0,"open", "mailto", 0, 0, 1);
//想某個地址發郵件
//ShellExecute(0,"open", "mailto:xxx@xxx.com", 0, 0, 1);
getchar();
}