久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <tfoot id='mCi2T'></tfoot>
    <i id='mCi2T'><tr id='mCi2T'><dt id='mCi2T'><q id='mCi2T'><span id='mCi2T'><b id='mCi2T'><form id='mCi2T'><ins id='mCi2T'></ins><ul id='mCi2T'></ul><sub id='mCi2T'></sub></form><legend id='mCi2T'></legend><bdo id='mCi2T'><pre id='mCi2T'><center id='mCi2T'></center></pre></bdo></b><th id='mCi2T'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='mCi2T'><tfoot id='mCi2T'></tfoot><dl id='mCi2T'><fieldset id='mCi2T'></fieldset></dl></div>
  • <small id='mCi2T'></small><noframes id='mCi2T'>

      <legend id='mCi2T'><style id='mCi2T'><dir id='mCi2T'><q id='mCi2T'></q></dir></style></legend>

          <bdo id='mCi2T'></bdo><ul id='mCi2T'></ul>

      1. 在 Windows 2000 中使用 Visual Studio 2010 編譯的 C++ D

        Issue using Visual Studio 2010 compiled C++ DLL in Windows 2000(在 Windows 2000 中使用 Visual Studio 2010 編譯的 C++ DLL 的問題)
          <legend id='GK33e'><style id='GK33e'><dir id='GK33e'><q id='GK33e'></q></dir></style></legend>
            <bdo id='GK33e'></bdo><ul id='GK33e'></ul>

              <tbody id='GK33e'></tbody>

              • <i id='GK33e'><tr id='GK33e'><dt id='GK33e'><q id='GK33e'><span id='GK33e'><b id='GK33e'><form id='GK33e'><ins id='GK33e'></ins><ul id='GK33e'></ul><sub id='GK33e'></sub></form><legend id='GK33e'></legend><bdo id='GK33e'><pre id='GK33e'><center id='GK33e'></center></pre></bdo></b><th id='GK33e'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='GK33e'><tfoot id='GK33e'></tfoot><dl id='GK33e'><fieldset id='GK33e'></fieldset></dl></div>

                1. <tfoot id='GK33e'></tfoot>
                2. <small id='GK33e'></small><noframes id='GK33e'>

                3. 本文介紹了在 Windows 2000 中使用 Visual Studio 2010 編譯的 C++ DLL 的問題的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  限時送ChatGPT賬號..

                  我有一個用非托管 C++ 編寫的非常簡單的 DLL,我可以從我的應用程序訪問它.我最近切換到 Visual Studio 2010,DLL 從 55k 減少到 35k,沒有代碼更改,現在它不再加載到 Windows 2000 中.我沒有更改任何代碼或編譯器設置.我對 0x0500 進行了定義設置,其中應該包括 Windows 2000 支持.有沒有其他人遇到過這個問題,或者對我能做什么有任何想法?

                  I have a very simple DLL written in unmanaged C++ that I access from my application. I recently switch to Visual Studio 2010, and the DLL went from 55k down to 35k with no code changes, and now it will no longer load in Windows 2000. I didn't change any code or compiler settings. I have my defines setup for 0x0500, which should include Windows 2000 support. Has anyone else run into this, or have any ideas of what I can do?

                  推薦答案

                  Visual Studio 2010 無法構建在 Windows 2000 上運行的二進制文件.實際上比這更糟糕,它們也不會在 Windows XP RTM 或 Windows XP Service Pack 1 上運行.這是因為 VS2010 的 C 運行時庫需要 EncodePointer API,該 API 直到 SP2 才可用.

                  Visual Studio 2010 cannot build binaries that run on Windows 2000. It's actually even worse than that, they won't run on Windows XP RTM or Windows XP Service Pack 1 either. This is because VS2010's C runtime library requires the EncodePointer API which is not available until SP2.

                  如果您想支持早期版本的 Windows,您似乎無法安裝 VS2008.您可以將整個項目移動到 Visual Studio 2008,也可以從 Visual Studio 2010 項目中定位 vc90 (Visual Studio 2008) 工具集.有關后一種方法的更多詳細信息,請參閱我的相關問題的答案 此處.

                  It appears you're stuck building with installing VS2008 if you want to support earlier versions of Windows. You can either move your entire project to Visual Studio 2008 or you can target the vc90 (Visual Studio 2008) toolset from within your Visual Studio 2010 projects. For more details on the latter method, see this anwser to my related question here.

                  這篇關于在 Windows 2000 中使用 Visual Studio 2010 編譯的 C++ DLL 的問題的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Why do two functions have the same address?(為什么兩個函數的地址相同?)
                  Why the initializer of std::function has to be CopyConstructible?(為什么 std::function 的初始化程序必須是可復制構造的?)
                  mixing templates with polymorphism(混合模板與多態性)
                  When should I use the keyword quot;typenamequot; when using templates(我什么時候應該使用關鍵字“typename?使用模板時)
                  Dependent name resolution amp; namespace std / Standard Library(依賴名稱解析命名空間 std/標準庫)
                  gcc can compile a variadic template while clang cannot(gcc 可以編譯可變參數模板,而 clang 不能)
                  <i id='kpgRR'><tr id='kpgRR'><dt id='kpgRR'><q id='kpgRR'><span id='kpgRR'><b id='kpgRR'><form id='kpgRR'><ins id='kpgRR'></ins><ul id='kpgRR'></ul><sub id='kpgRR'></sub></form><legend id='kpgRR'></legend><bdo id='kpgRR'><pre id='kpgRR'><center id='kpgRR'></center></pre></bdo></b><th id='kpgRR'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='kpgRR'><tfoot id='kpgRR'></tfoot><dl id='kpgRR'><fieldset id='kpgRR'></fieldset></dl></div>

                      <bdo id='kpgRR'></bdo><ul id='kpgRR'></ul>

                      1. <small id='kpgRR'></small><noframes id='kpgRR'>

                        <tfoot id='kpgRR'></tfoot>
                          <tbody id='kpgRR'></tbody>

                        <legend id='kpgRR'><style id='kpgRR'><dir id='kpgRR'><q id='kpgRR'></q></dir></style></legend>

                          1. 主站蜘蛛池模板: 精品视频一区二区三区在线观看 | 天天看天天爽 | 国产一区二区三区欧美 | 成人在线观看免费 | 免费麻豆视频 | 综合网中文字幕 | 久久成人国产 | 久久久久久久久久久久久9999 | 亚洲一区二区三区观看 | 天天久久 | 久久精品国产清自在天天线 | 久久中文字幕一区 | 91xxx在线观看 | 国产精品一区二区三区久久 | 中文字幕第二区 | 亚洲成人一区二区三区 | 国产精品久久久久久妇女 | 精品国产黄a∨片高清在线 www.一级片 国产欧美日韩综合精品一区二区 | 99热免费在线 | 免费在线观看av | 日韩三级视频 | 国产区在线观看 | 日韩精品一区二区三区第95 | 91偷拍精品一区二区三区 | 一级毛片在线播放 | 久久精品亚洲欧美日韩精品中文字幕 | 99久久精品免费 | 婷婷久久综合 | 99国内精品久久久久久久 | 五月激情婷婷六月 | 欧美色性| 国产日产欧产精品精品推荐蛮挑 | 日本 欧美 国产 | 日本不卡免费新一二三区 | 久久久久久久久久毛片 | 久久久2o19精品 | 亚洲精品一二区 | 久久大陆| 久久另类 | 国产不卡在线播放 | 国产一区二区在线免费观看 |