2013年2月21日

摘要: View Code #include <Windows.h>#include <stdio.h>void Foo();int main(){ while(1) { Foo(); }}void Foo(){ static DWORD dwStartT = 0; DWORD dwCurT = GetTickCount(); if(dwCurT - dwStartT < 5000) { return ; } dwStartT = dwCurT; printf("foo call \n");} 阅读全文
posted @ 2013-02-21 18:26 All IN 阅读(221) 评论(0) 推荐(0)

导航