• <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>

            S.l.e!ep.¢%

            像打了激速一樣,以四倍的速度運轉,開心的工作
            簡單、開放、平等的公司文化;尊重個性、自由與個人價值;
            posts - 1098, comments - 335, trackbacks - 0, articles - 1
              C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理

            pass variable-argument list

            Posted on 2013-05-18 10:45 S.l.e!ep.¢% 閱讀(668) 評論(0)  編輯 收藏 引用 所屬分類: C++

            Introduction

            I've been looking for solution of passing variable-argument list from my va-function to another one, like TRACE for example. All solutions I saw were about using special functions that take va_list as argument. But this is a un-straight way. Why couldn't I just pass "..." to next function? C++ syntax doesn't allow this. But C++ allows to extend itself. Let me introduce you new macros from va_ set:

            template<byte count>
            struct SVaPassNext{
                SVaPassNext<count-1> big;
                DWORD dw;
            };
            template<> struct SVaPassNext<0>{};
            //SVaPassNext - is generator of structure of any size at compile time.class CVaPassNext{
            public:
                SVaPassNext<50> svapassnext;
                CVaPassNext(va_list & args){
            		try{//to avoid access violation
            			memcpy(&svapassnext, args, sizeof(svapassnext));
            		} catch (...) {}
                }
            };
            #define va_pass(valist) CVaPassNext(valist).svapassnext#if 0 //using:void MyVA_Function(szFormat, ...){
                va_list args;
                va_start(args, szFormat);
                SomeOtherVA_Function(szFormat, va_pass(args));
                va_end(args);
            }
            #endif
            how this works:
            I just copy 50 * sizeof(DWORD) bytes of stack to my struct of this size and simply pass this struct as ... argument to next function. Compiler just copies my copy of local stack to next function stack. And that's all we need.

            Enjoy!
            精品久久久久久久久中文字幕| 亚洲午夜精品久久久久久人妖| 久久青青草原综合伊人| 久久中文字幕人妻丝袜| 久久久久亚洲精品中文字幕| 很黄很污的网站久久mimi色| 99久久精品国产一区二区| 99久久精品久久久久久清纯| 精品久久一区二区三区| 久久成人精品视频| 久久99精品国产麻豆蜜芽| 亚洲国产成人久久综合野外| 中文字幕无码久久精品青草 | 久久久久久国产精品美女| 四虎亚洲国产成人久久精品| 久久久久国产精品人妻| 久久精品国产亚洲欧美| 日韩欧美亚洲综合久久影院Ds | 久久成人精品| 亚洲中文字幕无码久久2017| 久久久久人妻一区精品果冻| 久久精品国产2020| 婷婷久久综合九色综合绿巨人| 久久亚洲日韩精品一区二区三区| 久久久久亚洲精品男人的天堂| 精品久久久久久成人AV| 伊人久久综合成人网| 久久精品日日躁夜夜躁欧美| 日韩AV毛片精品久久久| 四虎亚洲国产成人久久精品| 国产亚州精品女人久久久久久 | 三级韩国一区久久二区综合| 久久精品成人免费网站| 久久久精品2019免费观看| 久久国产综合精品五月天| 国产精品免费久久久久电影网| 99re久久精品国产首页2020| 色综合久久中文色婷婷| 久久亚洲精品人成综合网| 精品久久人人妻人人做精品| 欧美国产成人久久精品|