代码搜索结果
找到约 10,000 项符合
Timer 的代码
timer.h
#include
#include
#include
#include
#ifndef _TIMER_H_INCLUDED
#define _TIMER_H_INCLUDED
#if !defined(_ENABLE_AUTODEPEND)
#pragma read_only_file;
#end
timer.h
#if !defined __TIMER_H__
#define __TIMER_H__
void CALLBACK TimerProc(HWND HWnd, UINT nMsg, UINT nIDEvent, DWORD dwTime);
#endif
timer.cpp
#include "StdAfx.h"
#include "Timer.h"
void CALLBACK TimerProc(HWND HWnd, UINT nMsg, UINT nIDEvent, DWORD dwTime)
{
AfxGetApp()->OnIdle(0);
};
timer.java
import java.applet.*;
import java.awt.*;
import java.util.*;
//代表下拉式编辑框,用来输入小时、分钟和秒
class SpinButton
{
int x, y, number, maxVal, runner;
Font font1 = new Font("Dialog", Font.BOLD,14);
bo
timer.cpp
#include "Timer.h"
#include "mmsystem.h"
#pragma comment(lib,"winmm.lib")
#define ID_TIMER_SYS 1
#define ID_TIMER_EVENT 2
//=======================================================================