○時間の設定

#include <windows.h>

int main(int count,char *args[]){

	SYSTEMTIME st;
	GetSystemTime(&st);//システムの時間を取得

	st.wYear =st.wYear -1;//1年マイナスをする

	SetSystemTime(&st);//システムの時間を設定

	return 0;
}



▲トップページ > Windows と C++