锘??xml version="1.0" encoding="utf-8" standalone="yes"?>一区二区视频免费完整版观看,久久久精品网,国产一级久久http://www.shnenglu.com/leo-chen/zh-cnSat, 11 Oct 2025 09:30:31 GMTSat, 11 Oct 2025 09:30:31 GMT60 濡備綍璁〢PI鍥炶皟浣犵殑VC綾繪垚鍛樺嚱鏁拌屼笉鏄潤鎬佸嚱鏁?http://www.shnenglu.com/leo-chen/archive/2007/05/16/24201.htmlLeoChenLeoChenWed, 16 May 2007 05:32:00 GMThttp://www.shnenglu.com/leo-chen/archive/2007/05/16/24201.htmlhttp://www.shnenglu.com/leo-chen/comments/24201.htmlhttp://www.shnenglu.com/leo-chen/archive/2007/05/16/24201.html#Feedback2http://www.shnenglu.com/leo-chen/comments/commentRss/24201.htmlhttp://www.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://www.shnenglu.com/leo-chen/archive/2007/05/16/24186.htmlLeoChenLeoChenWed, 16 May 2007 02:31:00 GMThttp://www.shnenglu.com/leo-chen/archive/2007/05/16/24186.htmlhttp://www.shnenglu.com/leo-chen/comments/24186.htmlhttp://www.shnenglu.com/leo-chen/archive/2007/05/16/24186.html#Feedback0http://www.shnenglu.com/leo-chen/comments/commentRss/24186.htmlhttp://www.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>
            久热re这里精品视频在线6| 亚洲欧美一区二区三区极速播放 | 亚洲欧美在线免费| 欧美好吊妞视频| 久久久久久久999精品视频| 亚洲国产一区二区精品专区| 欧美一二区视频| 久久久www成人免费毛片麻豆| 国产亚洲成年网址在线观看| 久久精品国产免费观看| 久久久亚洲精品一区二区三区 | 欧美三级网页| 亚洲一区二区在线观看视频| 妖精视频成人观看www| 欧美日韩精品一区| 国产精品萝li| 久久综合精品一区| 久久综合狠狠综合久久综合88| 欧美日韩精品二区| 欧美一区二区在线免费播放| 夜夜嗨av一区二区三区免费区| 美女被久久久| 亚洲视频 欧洲视频| 久久都是精品| 亚洲宅男天堂在线观看无病毒| 久久国产日本精品| 亚洲精品男同| 亚洲伊人网站| 一区二区动漫| 欧美1区2区| 久久久久久久综合狠狠综合| 欧美激情综合| 91久久亚洲| 国内成+人亚洲| 中日韩视频在线观看| 99re66热这里只有精品3直播| 亚洲天堂免费在线观看视频| 91久久精品国产91性色tv| 亚洲一级影院| 欧美一区二区三区视频免费播放| 免费一区二区三区| 亚洲国产精品精华液2区45 | 你懂的国产精品| 亚洲一区三区视频在线观看| 欧美激情在线播放| 欧美激情在线有限公司| 国产原创一区二区| 午夜亚洲视频| 欧美激情精品| 亚洲伦理在线观看| 久久综合99re88久久爱| 女女同性精品视频| 亚洲国产高清在线| 亚洲精品自在在线观看| 一区二区日韩| 国产午夜精品理论片a级大结局 | 久久精品日韩| 欧美成人国产va精品日本一级| 亚洲高清不卡av| 久久av一区| 亚洲精品乱码久久久久久蜜桃麻豆| 亚洲精品一区在线| 欧美大片专区| 欧美一区三区二区在线观看| 欧美激情91| 欧美一区二区日韩| 日韩视频免费观看高清在线视频 | 好吊一区二区三区| 欧美另类亚洲| 另类天堂视频在线观看| 亚洲一区二区网站| 亚洲人成网站999久久久综合| 欧美亚洲免费电影| 亚洲一区二区不卡免费| 在线成人h网| 极品少妇一区二区三区| 国产欧美丝祙| 国产精品久久久久天堂| 欧美日韩免费在线视频| 一区二区三区.www| 99re在线精品| 亚洲三级影院| 亚洲视频第一页| 99v久久综合狠狠综合久久| 午夜日韩福利| 欧美一区二视频| 久久精品免费电影| 久久在线免费观看视频| 久久久久久夜精品精品免费| 久久天天躁狠狠躁夜夜av| 制服诱惑一区二区| 一本一本久久a久久精品综合麻豆| 国产欧美日韩专区发布| 久久久水蜜桃av免费网站| 小嫩嫩精品导航| 久久精品视频导航| 欧美精品免费在线| 国产精品久久久久久久久久三级 | 国产亚洲福利社区一区| 国产一级久久| 亚洲一区二区在线看| 中文无字幕一区二区三区| 久久精品麻豆| 99在线精品视频| 毛片一区二区三区| 国产精品久久久久久av下载红粉| 激情亚洲网站| 羞羞答答国产精品www一本 | 亚洲一区二区免费在线| 久久久久五月天| 国产午夜一区二区三区| 99国产麻豆精品| 亚洲国产欧美一区二区三区久久 | 蜜臀av性久久久久蜜臀aⅴ四虎 | 翔田千里一区二区| 免费成人高清| 亚洲激情女人| 欧美色欧美亚洲高清在线视频| 午夜欧美大片免费观看| 亚洲第一区在线观看| 欧美在线三区| 一区二区av在线| 亚洲破处大片| 狠狠综合久久av一区二区小说| 国产精品伦子伦免费视频| 欧美精品日本| 欧美电影免费| 狂野欧美性猛交xxxx巴西| 欧美一区在线看| 亚洲欧美99| 亚洲一区二区日本| 99精品欧美一区二区三区| 亚洲精品四区| 亚洲精品日韩久久| 亚洲国产成人在线播放| 欧美二区在线观看| 欧美成人性生活| 欧美不卡视频一区发布| 牛牛影视久久网| 乱中年女人伦av一区二区| 玖玖综合伊人| 牛人盗摄一区二区三区视频| 欧美 日韩 国产一区二区在线视频| 欧美影院成人| 久久精品观看| 久久婷婷国产麻豆91天堂| 美女诱惑一区| 亚洲日本成人网| 国产精品区一区| 亚洲国产日韩欧美在线图片| 国产精品久久久久久久一区探花| 亚洲国产精品久久久久久女王| 国模私拍一区二区三区| 久久国产加勒比精品无码| 欧美一区二区视频在线| 国内伊人久久久久久网站视频| 午夜精品久久久久久久| 久久国产欧美精品| 国产三级欧美三级| 你懂的成人av| 一区二区三区蜜桃网| 久久久久9999亚洲精品| 亚洲国产cao| 国产欧美日韩高清| 久久久青草青青国产亚洲免观| 亚洲国产婷婷| 欧美一区二区三区免费观看视频| 韩国女主播一区| 欧美日韩国产精品一卡| 欧美一区二区日韩| 亚洲人成网站777色婷婷| 欧美一区二区三区精品| 亚洲欧洲日夜超级视频| 国产精品理论片在线观看| 老司机精品久久| 欧美一区二区性| 国产精品99久久久久久久vr| 模特精品在线| 久久一日本道色综合久久| 亚洲午夜国产成人av电影男同| 亚洲风情亚aⅴ在线发布| 国产日韩在线看| 国产精品一区二区欧美| 国产精品v一区二区三区| 免费观看在线综合色| 午夜国产精品视频免费体验区| 最新中文字幕亚洲| 久久综合亚州| 久久亚洲国产成人| 久久久久国色av免费观看性色| 亚洲专区在线视频| 性色av一区二区三区在线观看 | 影音先锋日韩有码| 亚洲影院污污.| 日韩亚洲一区二区| 9色国产精品| 性欧美精品高清| 久久欧美中文字幕| 亚洲国产日韩欧美在线99| 亚洲三级影院|