锘??xml version="1.0" encoding="utf-8" standalone="yes"?>一区二区视频免费完整版观看,久久久精品网,国产一级久久http://m.shnenglu.com/leo-chen/zh-cnSat, 11 Oct 2025 09:30:31 GMTSat, 11 Oct 2025 09:30:31 GMT60 濡備綍璁〢PI鍥炶皟浣犵殑VC綾繪垚鍛樺嚱鏁拌屼笉鏄潤鎬佸嚱鏁?http://m.shnenglu.com/leo-chen/archive/2007/05/16/24201.htmlLeoChenLeoChenWed, 16 May 2007 05:32:00 GMThttp://m.shnenglu.com/leo-chen/archive/2007/05/16/24201.htmlhttp://m.shnenglu.com/leo-chen/comments/24201.htmlhttp://m.shnenglu.com/leo-chen/archive/2007/05/16/24201.html#Feedback2http://m.shnenglu.com/leo-chen/comments/commentRss/24201.htmlhttp://m.shnenglu.com/leo-chen/services/trackbacks/24201.html 

鍙鍦ㄥ嚱鏁板0鏄庡墠鍔爏tatic灝卞ソ浜嗭紝鍝堝搱鍝堝搱鍝垀~~~~  

銆傘傘傚紑涓帺絎戙備互鍓嶇‘瀹炲ぇ瀹墮兘鏄繖鏍峰仛鐨勶紝鍦ㄩ潤鎬佺殑鎴愬憳鍑芥暟涓啀鏌ユ壘this鎸囬拡錛屽畠澶氬崐鏄叏灞鍙橀噺錛屾垨鑰呮槸鍥炶皟鍑芥暟鎻愪緵鐨勯檮鍔犲弬鏁般傚鏋滄槸鍓嶈咃紝灝變細澶уぇ鐮村潖紼嬪簭鐨勭粨鏋勩傝岀幇鍦紝闅忕潃紺句細鐢熶駭鍔涚殑鍙戝睍錛屽伓浠凡緇忚兘鍋氬埌灝嗘垚鍛樺嚱鏁版槧灝勬垚涓轟竴涓復鏃剁殑闈欐佸嚱鏁頒簡銆傛湰鏂囧氨鏉ユ紨紺轟竴涓嬭繖縐嶅疄鐜版柟寮忋?/p>

棣栧厛闇瑕佸寘鍚竴涓敱yzwykkldczsh鍚屽織緙栧啓鐨勬ā鏉跨被-----涓囪兘澶氱敤鑷傚簲鏃犻檺鍒跺洖璋冩ā鏉匡紙涓虹邯蹇靛弸浜篺ishskin錛屾妯℃澘鍙堢О涓篐>W妯℃澘錛?nbsp;

/**************************************************************************
 *   ACCallback.h
 *   Helper class of Member function callback mechanism
 **************************************************************************/
#include "stdafx.h"
#include "windows.h"

#pragma pack(push, 1)
struct _ACCallbackOpCodes
{
 unsigned char tag;  // CALL e8
 LONG_PTR offset;  // offset (dest - src - 5, 5=sizeof(tag + offset))
 LONG_PTR _this;   // a this pointer
 LONG_PTR _func;   // pointer to real member function address
};
#pragma pack(pop)

static __declspec( naked ) int STDACJMPProc()
{
 _asm
 {
  POP ECX 
  MOV EAX, DWORD PTR [ECX + 4] // func
  MOV ECX, [ECX]     // this  
  JMP EAX
 }
}

static LONG_PTR CalcJmpOffset(LONG_PTR Src, LONG_PTR Dest)
{
 return Dest - (Src + 5);
}

/*
 * NOTE: _TPStdFunc: a type of function pointer to API or Callbacks, *MUST* be _stdcall
         _TPMemberFunc: a type of function pointer to class member function,
         *MUST* be the *DEFAULT* calling conversation, *NO* prefix should be added,
          that is, using ECX for "this" pointer, pushing parameters from right to left,
          and the callee cleans the stack.
          _TClass: the class who owns the callback function. The caller should only own the _stdcall function pointer
   LIFE TIME:  It is important to keep the ACCallback object alive until the CALLBACK is not required!!!
 */
template<typename _TPStdFunc, class _TClass, typename _TPMemberFunc>
class ACCallback
{
public:
 _TClass *m_pThis;
 _TPMemberFunc m_pFunc;

private:
 _TPStdFunc m_pStdFunc;

 void MakeCode()
 {
  if (m_pStdFunc) ::VirtualFree(m_pStdFunc, 0, MEM_RELEASE);
  m_pStdFunc = (_TPStdFunc)::VirtualAlloc(NULL, sizeof(_ACCallbackOpCodes), MEM_COMMIT, PAGE_EXECUTE_READWRITE);
  _ACCallbackOpCodes *p = (_ACCallbackOpCodes *)m_pStdFunc;
  p->_func = *(LONG_PTR *)&m_pFunc;
  p->_this = (LONG_PTR)m_pThis;
  p->tag = 0xE8;
  p->offset = CalcJmpOffset((LONG_PTR)p, (LONG_PTR)STDACJMPProc);
 }

public:
 ACCallback<_TPStdFunc, _TClass, _TPMemberFunc>()
 {
 }
 ACCallback<_TPStdFunc, _TClass, _TPMemberFunc>(_TClass* pThis,
  _TPMemberFunc pFunc
  )
 {
  m_pFunc = pFunc;
  m_pThis = pThis;
  m_pStdFunc = NULL;
  MakeCode();
 }
 void Assign(_TClass* pThis,
  _TPMemberFunc pFunc
  )
 {
  m_pFunc = pFunc;
  m_pThis = pThis;
  m_pStdFunc = NULL;
  MakeCode();
 }
 ~ACCallback<_TPStdFunc, _TClass, _TPMemberFunc>()
 {
  ::VirtualFree(m_pStdFunc, 0, MEM_RELEASE);
 }
 operator _TPStdFunc()
 {
  return m_pStdFunc;
 }
};

/********************************** EXAMPLE **********************************
class CClass1
{
public:
 TCHAR m_Buf[255];
 BOOL EnumWindowProc(HWND hwnd, LPARAM lp)
 {
  GetWindowText(hwnd, m_Buf, 255);
  printf("Enum window=%s\n", m_Buf);
  return TRUE;
 }
 typedef BOOL (CClass1::*CLASSWNDENUMPROC)(HWND, LPARAM);
};

TO USE:
 CClass1 c1;
 ACCallback<WNDENUMPROC, CClass1, CClass1::CLASSWNDENUMPROC> cb(&c1, &CClass1::EnumWindowProc);
 EnumWindows(cb, 0);

************************* END OF EXAMPLE *********************************/

妯℃澘鐨勪笁涓弬鏁板垎鍒槸錛欰PI鍑芥暟鎸囬拡鐨勭被鍨嬶紝綾誨悕瀛楋紝綾繪垚鍛樺嚱鏁版寚閽堢殑綾誨瀷錛堜袱縐嶅嚱鏁版寚閽堝湪鍙傛暟鍜岃繑鍥炲間笂搴旇涓鏍鳳紝鍙槸鍓嶈呭0鏄庝負_stdcall錛屽悗鑰呬笉鍔犱換浣曡皟鐢ㄤ慨楗幫紝鍗抽粯璁ょ殑__thiscall鏂瑰紡錛?br>璇ラ」澶存枃浠剁殑娉ㄩ噴涓粰浜嗕竴涓皟鐢ˋPI鍑芥暟EnumWindows鐨勪緥瀛愩傜幇鍦ㄥ伓浠潵璇曡瘯璋冪敤SetTimer銆?/p>

class CTestCallback
{
private:
 /* A callback of SetTimer, mirrored into member OnTimer */
 typedef void (CTestCallback::*CLASSTIMERPROC)(HWND, UINT, UINT_PTR, DWORD);
 void OnTimer (HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime);
 ACCallback<TIMERPROC, CTestCallback, CLASSTIMERPROC> m_DOnTimer;
}

璋冪敤鏃訛紝鍙榪欐牱鍐欙細
/* 鍒濆鍖栧洖璋冪粨鏋?*/
m_DOnTimer.Assign(this, &CTestCallback::OnTimer);
m_uid = ::SetTimer( NULL, 0, 1000, m_DOnTimer);

鏈鍚庤寰楀湪CTestCallback鐨勬瀽鏋勫嚱鏁頒腑KillTimer銆傜敱浜巑_DOnTimer浼氬疄鐜拌漿鍖栧埌闈欐佸嚱鏁版寚閽堢被鍨嬬殑鎿嶄綔絎︼紝鎵浠ヨ皟鐢ㄧ殑鍦版柟鍙鐩存帴鍐欏洖璋冪粨鏋勭殑鍚嶅瓧灝卞彲浠ヤ簡銆?/p>

浣跨敤璇ユā鏉塊渶瑕佹敞鎰忎袱鐐癸細
1.API鍑芥暟搴斿綋鏄痏stdcall綾誨瀷鐨勶紙榪欎竴鐐圭粷澶ч儴鍒咥PI閮芥弧瓚籌級銆傜被鎴愬憳鍑芥暟蹇呴』鏄粯璁ょ殑璋冪敤鏂瑰紡錛屼笉瑕佸姞_stdcall鎴朹cdecl涔嬬被鐨勪慨楗般傛鏂瑰紡鐨勯噸瑕佹潯浠跺氨鍦ㄤ簬_stdcall鍜宊_thiscall涔嬮棿鍙浉宸簡涓涓狤CX鎸囧嚭鐨則his鎸囬拡錛屾墍浠ユ垜浠墠鑳藉疄鐜拌繖縐嶆槧灝勶紙榪欑鏂瑰紡鍦╒CL鍜孉TL鐨勭獥鍙g被涓兘鏈変嬌鐢ㄥ埌錛夛紱
2.鍥炶皟緇撴瀯鐨勭敓瀛樺懆鏈熷簲褰撴槸鍦ㄦ暣涓洖璋冨嚱鏁版湁鏁堢殑鏃墮棿鍐呫傚洜姝わ紝瀵逛簬EnumWindows榪欐牱鐨勫嚱鏁幫紝鍙澹版槑鍦ㄦ爤涓婂氨鍙互浜嗭紱浣嗗浜嶴etTimer錛屽氨蹇呴』瀹氫箟涓虹被鎴愬憳鍙橀噺錛屽悓鏃訛紝鍦ㄧ被鐨勬瀽鏋勫嚱鏁頒腑蹇呴』鍙婃椂閿姣佽繖涓猼imer銆?/p>



LeoChen 2007-05-16 13:32 鍙戣〃璇勮
]]>
How to use SetTimer() with callback to a non-static member functionhttp://m.shnenglu.com/leo-chen/archive/2007/05/16/24186.htmlLeoChenLeoChenWed, 16 May 2007 02:31:00 GMThttp://m.shnenglu.com/leo-chen/archive/2007/05/16/24186.htmlhttp://m.shnenglu.com/leo-chen/comments/24186.htmlhttp://m.shnenglu.com/leo-chen/archive/2007/05/16/24186.html#Feedback0http://m.shnenglu.com/leo-chen/comments/commentRss/24186.htmlhttp://m.shnenglu.com/leo-chen/services/trackbacks/24186.htmlQuick update...

After reviewing the comments and suggestions from a few people, I made the solution better. Look for an update to this article which uses a better approach, namely using the functions:

  • CreateWaitableTimer()
  • SetWaitableTimer()
  • WaitForMultipleObjects()

The solution based on these functions will allow multiple instances of the CSleeperThread class to run (instead of just one using the current example). So stay tuned, I'll have this article updated as soon as possible. :-)

Introduction

I have seen many questions on the boards about how to properly use SetTimer(). I've also noticed that most of these questions are around how to put a thread to sleep for X seconds. One obvious answer would be to use the Sleep() function. The main drawback is, how do you gracefully shut down your thread, or cancel the Sleep() operation before the time expires.

This article is meant to address all of the above. I give an example of putting a thread to sleep using SetTimer(). The SetTimer() calls back to a non-static function. This is key, because normally you have to pass a static member to SetTimer() which means it can't access any other non-static variables or member functions of the class.

Details

Since implementing a non-static callback member is key to this, we'll go into this first. Implementing a callback to a static member function doesn't require anything different from implementing a regular C callback function. Since static member functions have the same signature as C functions with the same calling conventions, they can be referenced using just the function name.

Making a non-static callback member function is a different story, because they have a different signature than a C function. To make a non-static member function, it requires the use of two additional items:

  • A global (void*) pointer, referencing the class of the callback function
  • A wrapper function which will be passed to SetTimer()

This is actually a fairly simple implementation. First, you need to define your class:

class CSleeperThread : public CWinThread {
public:
static VOID CALLBACK TimerProc_Wrapper( HWND hwnd, UINT uMsg,
UINT idEvent, DWORD dwTime );
VOID CALLBACK TimerProc( HWND hwnd,
UINT uMsg, UINT idEvent, DWORD dwTime );
void ThreadMain();
void WakeUp();
private:
static void * pObject;
UINT_PTR pTimer;
CRITICAL_SECTION lock;
};

Then, don't forget to include the following line in your class implementation file:

void * CSleeperThread::pObject;

Now that we have our class declared, we can look at the wrapper function, the non-static member function and the member function that will call SetTimer():

VOID CALLBACK CSleeperThread::TimerProc_Wrapper( HWND hwnd, UINT uMsg,
UINT idEvent, DWORD dwTime ) {
CSleeperThread *pSomeClass = (CSleeperThread*)pObject; // cast the void pointer
pSomeClass->TimerProc(hwnd, uMsg, idEvent, dwTime); // call non-static function
}

The wrapper function first initializes a CSleeperThread pointer with pObject. Since pSomeClass is a local pointer, we can access it within the static wrapper function.

VOID CALLBACK CSleeperThread::TimerProc(HWND hwnd,
UINT uMsg, UINT idEvent, DWORD dwTime) {
::EnterCriticalSection(&lock);
if(idEvent == pTimer) {
KillTimer(NULL, pTimer);  // kill the timer so it won't fire again
ResumeThread();  // resume the main thread function
}
::LeaveCriticalSection(&lock);
}

The TimerProc member function isn't static, so we can access other non-static functions like ResumeThread() and we can access the private variable lock. Notice that I've entered a critical section which prevents a second timer event to enter the callback, thus ensuring that the first execution of TimerProc() will cancel out the timer.

Next, let's take a look at the main execution function, ThreadMain().

void CSleeperThread::ThreadMain()
{
pObject = this; // VERY IMPORTANT, must be initialized before
// calling SetTimer()
// call SetTimer, passing the wrapper function as the callback
pTimer = SetTimer(NULL, NULL, 10000, TimerProc_Wrapper);
// suspend until the timer expires
SuspendThread();
// the timer has expired, continue processing 
}

The first step in ThreadMain() is absolutely critical. We need to assign the class instance pointer (this) to the pObject variable. This is how the wrapper callback function will gain access to execute the non-static member function.

Next, we just call SetTimer() passing in a function pointer to our wrapper function. SetTimer() will call the wrapper function when the timer expires. The wrapper function in turn, will execute the non-static function TimerProc(), by accessing the static variable pSomeClass.

NOTE: I chose to implement a main function that will create the timer, go to sleep, continue processing and then exit when finished. This is in effect a function that will only execute once per timer. You could easily add a loop to ThreadMain() which would execute once for each timer event.

One last little function. Since we used SuspendThread() in ThreadMain(), if we need to wake up the thread (for whatever reason), all we have to do is make a call to ResumeThread(). So, I've added an access function like so:

void WakeUp() {
::EnterCriticalSection(&lock);
KillTimer(NULL, pTimer);
ResumeThread(); // wake the thread up
}

Buh dee buh dee, that's all folks...

And there we have it. A thread safe class that goes to sleep using SetTimer() and a non-static callback function; which also has the ability to wake up before the timer expires.

Hopefully, you have found this helpful. I've actually used this code in a project I'm working on now, and was in hopes someone else would get some good use out of it.

Someone once told me "you'll like programming if you like banging your head against the wall repeatedly". I've found that to be true, it took me literally several days to figure out what I've put into this article, I'm just slow I guess.

Whew, my head hurts, time for some Advil...or Ibooprofin.. or asssprin.... or something.

Credits...

I probably learned way more in the process of writing this article. So, much thanks goes to Lars Haendel for creating a web-site dedicated to understanding function pointers, without which I wouldn't know didley.

www.function-pointer.org.



LeoChen 2007-05-16 10:31 鍙戣〃璇勮
]]>
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            亚洲电影免费观看高清完整版在线观看| 欧美性开放视频| 免费影视亚洲| 鲁大师影院一区二区三区| 久久久久亚洲综合| 久久婷婷国产综合尤物精品 | 国产一区二区av| 国产一区二区三区视频在线观看 | 日韩性生活视频| 夜夜嗨av一区二区三区中文字幕| 一区二区三区精品久久久| 亚洲欧美大片| 久久久噜噜噜久久中文字免| 欧美夫妇交换俱乐部在线观看| 亚洲国产aⅴ天堂久久| 亚洲乱码精品一二三四区日韩在线| 日韩午夜av| 欧美在线观看你懂的| 欧美黑人在线播放| 国产乱码精品一区二区三| 亚洲高清色综合| 亚洲男人av电影| 欧美成人中文| 亚洲男女自偷自拍| 欧美成年人视频网站| 亚洲电影免费观看高清完整版在线观看| 欧美大片91| 亚洲一级特黄| 鲁大师成人一区二区三区| 欧美色图天堂网| 影音先锋日韩资源| 亚洲亚洲精品三区日韩精品在线视频 | 欧美激情免费在线| 亚洲香蕉在线观看| 免费观看亚洲视频大全| 国产精品毛片| 亚洲精选视频免费看| 久久九九免费视频| 夜夜嗨av一区二区三区四季av| 久久久久久一区| 国产嫩草影院久久久久| 在线视频欧美日韩| 欧美激情第一页xxx| 午夜欧美不卡精品aaaaa| 欧美日韩在线不卡| 亚洲乱码视频| 亚洲国内自拍| 蜜臀va亚洲va欧美va天堂| 国产一区二区三区在线观看网站| 亚洲香蕉在线观看| 亚洲精品日韩综合观看成人91| 久久综合九色综合久99| 韩国欧美国产1区| 欧美中文在线字幕| 亚洲欧美三级在线| 国产人妖伪娘一区91| 欧美与黑人午夜性猛交久久久| 一区二区三区欧美在线| 欧美日韩免费一区二区三区视频| 亚洲伦伦在线| 亚洲精品日韩一| 欧美视频在线播放| 亚洲一级片在线看| 亚洲婷婷在线| 国产日韩欧美| 六月婷婷久久| 欧美阿v一级看视频| 亚洲国产日韩精品| 亚洲国产精品一区| 欧美国产一区二区| 中文日韩在线视频| 亚洲一区高清| 国模精品一区二区三区| 麻豆精品视频在线观看| 免费人成精品欧美精品| 亚洲狼人综合| 亚洲午夜在线| 狠狠色狠狠色综合人人| 亚洲电影成人| 国产精品久久福利| 久久天堂精品| 欧美黑人一区二区三区| 一区二区日韩精品| 先锋影音国产精品| 亚洲福利在线视频| 亚洲欧洲在线一区| 国产精品久久网| 久久久99免费视频| 欧美激情网友自拍| 欧美一级欧美一级在线播放| 久久麻豆一区二区| 一区二区免费在线观看| 亚洲欧美在线磁力| 亚洲国产精品小视频| 亚洲色无码播放| 在线观看一区欧美| 一区二区三区欧美在线| 国产一区二区按摩在线观看| 91久久精品www人人做人人爽| 国产精品美女久久久久久免费| 久久久久久综合| 欧美日韩国产欧| 老司机精品久久| 国产精品wwwwww| 欧美激情导航| 极品裸体白嫩激情啪啪国产精品| 亚洲精品中文在线| 精品成人在线视频| 亚洲午夜久久久久久久久电影院| 亚洲高清资源| 欧美一区二区免费| 亚洲视频一起| 免费国产自线拍一欧美视频| 午夜免费日韩视频| 欧美区国产区| 欧美电影免费观看高清完整版| 国产精品蜜臀在线观看| 亚洲国产日韩美| 悠悠资源网亚洲青| 亚洲欧美国产另类| 在线一区二区视频| 欧美激情一区二区三区在线视频观看| 久久久精品视频成人| 国产精品久久久久久久午夜| 亚洲精品久久久久久久久久久久久 | 午夜精品久久久久久99热| 美女爽到呻吟久久久久| 久色婷婷小香蕉久久| 国产亚洲人成网站在线观看| 亚洲一品av免费观看| 一区二区三区四区五区在线| 欧美韩日高清| 亚洲日本中文字幕区| 91久久中文| 久久亚洲综合网| 男人天堂欧美日韩| 亚洲夫妻自拍| 免费成人美女女| 亚洲缚视频在线观看| 午夜精品一区二区三区在线| 亚洲欧美综合网| 国产亚洲精品aa| 久久久99免费视频| 欧美18av| 一本一本大道香蕉久在线精品| 欧美精品一区二区三| 亚洲人在线视频| 亚洲免费视频网站| 国产日韩欧美中文在线播放| 欧美一区二区成人6969| 久久综合五月| 亚洲乱码国产乱码精品精| 欧美日本韩国一区| 在线亚洲自拍| 久久久久久久一区二区三区| 激情文学综合丁香| 欧美精品麻豆| 亚洲欧美日本视频在线观看| 久久久视频精品| 亚洲美女在线国产| 国产精品区一区二区三| 亚洲女女女同性video| 欧美综合国产精品久久丁香| 黄色综合网站| 欧美久久久久久久久| 亚洲视频一起| 免费久久99精品国产自| 一区二区三区欧美视频| 国产麻豆91精品| 欧美成人一区二免费视频软件| 这里只有视频精品| 六月丁香综合| 亚洲性av在线| 亚洲第一在线综合在线| 国产精品久久久91| 麻豆精品视频在线观看视频| 中国成人黄色视屏| 欧美成人国产一区二区| 亚洲欧美日韩综合一区| 亚洲激情av在线| 国产性猛交xxxx免费看久久| 欧美精品一区二区在线观看| 欧美一区二区三区在线免费观看 | 亚洲欧美国产77777| 亚洲第一黄色网| 久久国产66| 亚洲一区三区在线观看| 亚洲激情偷拍| 国产自产高清不卡| 国产精品国产三级国产专播精品人 | 亚洲精品一区二区在线| 久久综合久久综合久久| 一区二区三区四区在线| 在线观看亚洲专区| 国产亚洲午夜| 国产精品美腿一区在线看| 欧美日韩国产小视频| 欧美 日韩 国产 一区| 久久不射中文字幕| 亚洲摸下面视频|