LZW压缩编码

http://www.chinaaspx.com/comm/dotnetbbs/Showtopic.aspx?Forum_ID=44&Id=139926&PPage=1

 

BMP、GIF和JPEG文件格式简介及相互转换 

http://cache.baidu.com/c?word=lzw%3B%B5%C4%3B%D1%B9%CB%F5%3B%B1%C8&url=http%3A//www%2E7880%2Ecom/Print%2Ephp%3FPID%3Ded7a1140&p=ce7ecb15d9c205f707be9b7e0b4a&user=baidu 

 

LZW压缩编码

MSDN上按照下面方法定义SetTimer函数的

The SetTimer function creates a timer with the specified time-out value.

//SetTimer函数创建一个指定时间间隔的定时器

Syntax

UINT_PTR SetTimer(      

    HWND hWnd,     UINT_PTR nIDEvent,     UINT uElapse,     TIMERPROC lpTimerFunc );

Parameters

hWnd
[in] Handle to the window to be associated with the timer. This window must be owned by the calling thread. If this parameter is NULL, no window is associated with the timer and the nIDEvent parameter is ignored.
//指向与与定时器相关的窗口,这个窗口必须拥有调用该定时器的线程.如果该参数是NULL那么该timer的ID将被忽略,也就是该timer失效.
nIDEvent
[in] Specifies a nonzero timer identifier. If the hWnd parameter is NULL, this parameter is ignored. If the hWnd parameter is not NULL and the window specified by hWnd already has a timer with the value nIDEvent, then the existing timer is replaced by the new timer. When SetTimer replaces a timer, the timer is reset. Therefore, a message will be sent after the current time-out value elapses, but the previously set time-out value is ignored.
//这个函数将被忽略,如果参数 hWnd 为NULL,如果系统已经有 了一个timer的ID和这个新设置的ID相同,那么这个新的ID将取代旧的ID,当目前的时间片到的时候,一个消息将要被发送,以前的时间设置的值将被取消.
uElapse
[in] Specifies the time-out value, in milliseconds.
//指定时间间隔

Windows NT/2000/XP: If uElapse is greater than USER_TIMER_MAXIMUM, the timeout is set to 1.

Windows 2000/XP: If uElapse is less than USER_TIMER_MINIMUM, the timeout is set to USER_TIMER_MINIMUM.

Windows Server 2003: If uElapse is greater than USER_TIMER_MAXIMUM, the timeout is set to USER_TIMER_MAXIMUM.

Windows XP SP2/Windows Server 2003 SP1: If uElapse is less than USER_TIMER_MINIMUM, the timeout is set to USER_TIMER_MINIMUM. If uElapse is greater than USER_TIMER_MAXIMUM, the timeout is set to USER_TIMER_MAXIMUM.

lpTimerFunc
[in] Pointer to the function to be notified when the time-out value elapses. For more information about the function, see tabindex="" keywords="_win32_TimerProc_cpp" xmlns:mshelp="http://msdn.microsoft.com/mshelp" /> TimerProc. If lpTimerFunc is NULL, the system posts a tabindex="" keywords="_win32_WM_TIMER_cpp" xmlns:mshelp="http://msdn.microsoft.com/mshelp" /> WM_TIMER message to the application queue. The hwnd member of the message's tabindex="" keywords="_win32_MSG_str_cpp" xmlns:mshelp="http://msdn.microsoft.com/mshelp" /> MSG structure contains the value of the hWnd parameter.
//如果该参数是NULL,那么系统将发送 WM_TIMER到消息队列, MSG结构中的hwnd 将包含hWnd 参数.如果该参数不是NULL,那么当时间到达的时候,将调用TimerProc.函数

Return Value

If the function succeeds and the hWnd parameter is NULL, the return value is an integer identifying the new timer. An application can pass this value to the tabindex="" keywords="_win32_KillTimer_cpp" xmlns:mshelp="http://msdn.microsoft.com/mshelp" />KillTimer function to destroy the timer.

//当参数hWnd 为NULL而且函数运行成功后,返回一个整数表明新的timer.应用程序通过这个值调用KillTimer 函数去销毁这个timer.

If the function succeeds and the hWnd parameter is not NULL, then the return value is a nonzero integer. An application can pass the value of the KillTimer parameter to the KillTimer function to destroy the timer.

//反之,返回值是一个非领的整数,应用程序能通过KillTimer 这个值去调用 函数去调用 KillTimer 销毁timer.

If the function fails to create a timer, the return value is zero. To get extended error information, call tabindex="" keywords="_win32_GetLastError" xmlns:mshelp="http://msdn.microsoft.com/mshelp" />GetLastError.

//函数失败,返回值是领,要得到更多的错误信息参看GetLastError.



Remarks

An application can process WM_TIMER messages by including a WM_TIMER case statement in the window procedure or by specifying a TimerProc callback function when creating the timer. When you specify a TimerProc callback function, the default window procedure calls the callback function when it processes WM_TIMER. Therefore, you need to dispatch messages in the calling thread, even when you use TimerProc instead of processing WM_TIMER.

The wParam parameter of the WM_TIMER message contains the value of the nIDEvent parameter.

The timer identifier, nIDEvent, is specific to the associated window. Another window can have its own timer which has the same identifier as a timer owned by another window. The timers are distinct.

SetTimer can reuse timer IDs in the case where hWnd is NULL.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值