Windows2000/XP チューンナップ専用スレ Part21

このエントリーをはてなブックマークに追加
594名無し~3.EXE
#include <stdio.h>
#include <windows.h>

int main(void)
{
timeBeginPeriod(1);
printf("Press any key to restore normal timer frequency.\n");
getchar();
timeEndPeriod(1);
return 0;
}