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

              C++博客 :: 首頁(yè) :: 聯(lián)系 ::  :: 管理
              163 Posts :: 4 Stories :: 350 Comments :: 0 Trackbacks

            常用鏈接

            留言簿(48)

            我參與的團(tuán)隊(duì)

            搜索

            •  

            積分與排名

            • 積分 - 401314
            • 排名 - 59

            最新評(píng)論

            閱讀排行榜

            評(píng)論排行榜

            該宏放置一個(gè)注釋到對(duì)象文件或者可執(zhí)行文件。
            #pragma comment( comment-type [,"commentstring"] )

            comment-type是一個(gè)預(yù)定義的標(biāo)識(shí)符,指定注釋的類型,應(yīng)該是compiler,exestr,lib,linker之一。
            commentstring是一個(gè)提供為comment-type提供附加信息的字符串,
            Remarks:
            1、compiler:放置編譯器的版本或者名字到一個(gè)對(duì)象文件,該選項(xiàng)是被linker忽略的。
            2、exestr:在以后的版本將被取消。
            3、lib:放置一個(gè)庫(kù)搜索記錄到對(duì)象文件中,這個(gè)類型應(yīng)該是和commentstring(指定你要Liner搜索的lib的名稱和路徑)
            這個(gè)庫(kù)的名字放在Object文件的默認(rèn)庫(kù)搜索記錄的后面,linker搜索這個(gè)這個(gè)庫(kù)就像你在命令行輸入這個(gè)命令一樣。你可以
            在一個(gè)源文件中設(shè)置多個(gè)庫(kù)記錄,它們?cè)趏bject文件中的順序和在源文件中的順序一樣。如果默認(rèn)庫(kù)和附加庫(kù)的次序是需要
            區(qū)別的,使用Z編譯開關(guān)是防止默認(rèn)庫(kù)放到object模塊。
            4、linker:指定一個(gè)連接選項(xiàng),這樣就不用在命令行輸入或者在開發(fā)環(huán)境中設(shè)置了。
            只有下面的linker選項(xiàng)能被傳給Linker.
            • /DEFAULTLIB

            • /EXPORT

            • /INCLUDE

            • /MANIFESTDEPENDENCY

            • /MERGE

            • /SECTION

            (1)/DEFAULTLIB:library

            /DEFAULTLIB 選項(xiàng)將一個(gè) library 添加到 LINK 在解析引用時(shí)搜索的庫(kù)列表。用 /DEFAULTLIB 指定的庫(kù)在命令行上指定的庫(kù)之后和 .obj 文件中指定的默認(rèn)庫(kù)之前被搜索。

            忽略所有默認(rèn)庫(kù) (/NODEFAULTLIB) 選項(xiàng)重寫 /DEFAULTLIB:library。如果在兩者中指定了相同的 library 名稱,忽略庫(kù) (/NODEFAULTLIB:library) 選項(xiàng)將重寫 /DEFAULTLIB:library。

            (2)/EXPORT:entryname[,@ordinal[,NONAME]][,DATA]

            使用該選項(xiàng),可以從程序?qū)С龊瘮?shù),以便其他程序可以調(diào)用該函數(shù)。也可以導(dǎo)出數(shù)據(jù)。通常在 DLL 中定義導(dǎo)出。entryname 是調(diào)用程序要使用的函數(shù)或數(shù)據(jù)項(xiàng)的名稱。ordinal 在導(dǎo)出表中指定范圍在 1 至 65,535 的索引;如果沒有指定 ordinal,則 LINK 將分配一個(gè)。NONAME 關(guān)鍵字只將函數(shù)導(dǎo)出為序號(hào),沒有 entryname。

            DATA 關(guān)鍵字指定導(dǎo)出項(xiàng)為數(shù)據(jù)項(xiàng)??蛻舫绦蛑械臄?shù)據(jù)項(xiàng)必須用 extern __declspec(dllimport) 來(lái)聲明。
            有三種導(dǎo)出定義的方法,按照建議的使用順序依次為:

            1. 源代碼中的 __declspec(dllexport)

            2. .def 文件中的 EXPORTS 語(yǔ)句

            3. LINK 命令中的 /EXPORT 規(guī)范

            所有這三種方法可以用在同一個(gè)程序中。LINK 在生成包含導(dǎo)出的程序時(shí)還創(chuàng)建導(dǎo)入庫(kù),除非生成中使用了 .exp 文件。
            LINK 使用標(biāo)識(shí)符的修飾形式。編譯器在創(chuàng)建 .obj 文件時(shí)修飾標(biāo)識(shí)符。如果 entryname 以其未修飾的形式指定給鏈接器(與其在源代碼中一樣),則 LINK 將試圖匹配該名稱。如果無(wú)法找到唯一的匹配名稱,則 LINK 發(fā)出錯(cuò)誤信息。當(dāng)需要將標(biāo)識(shí)符指定給鏈接器時(shí),請(qǐng)使用 Dumpbin 工具獲取該標(biāo)識(shí)符的修飾名形式。

            (3)/INCLUDE:symbol

            /INCLUDE 選項(xiàng)通知鏈接器將指定的符號(hào)添加到符號(hào)表。

            若要指定多個(gè)符號(hào),請(qǐng)?jiān)诜?hào)名稱之間鍵入逗號(hào) (,)、分號(hào) (;) 或空格。在命令行上,對(duì)每個(gè)符號(hào)指定一次 /INCLUDE:symbol
            鏈接器通過(guò)將包含符號(hào)定義的對(duì)象添加到程序來(lái)解析 symbol。該功能對(duì)于添包含不會(huì)鏈接到程序的庫(kù)對(duì)象非常有用。用該選項(xiàng)指定符號(hào)將通過(guò) /OPT:REF 重寫該符號(hào)的移除。



            我們經(jīng)常用到的是#pragma   comment(lib,"*.lib")這類的。
            #pragma   comment(lib,"Ws2_32.lib")表示鏈接Ws2_32.lib這個(gè)庫(kù)。  
            和在工程設(shè)置里寫上鏈入Ws2_32.lib的效果一樣,不過(guò)這種方法寫的  
            程序別人在使用你的代碼的時(shí)候就不用再設(shè)置工程settings了


            posted on 2008-01-10 11:23 sdfasdf 閱讀(62592) 評(píng)論(36)  編輯 收藏 引用 所屬分類: C++

            Feedback

            # re: pragma comment的使用 2009-02-12 09:20 sven
            受益,謝謝,  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2009-03-05 14:17 ym.luo
            不錯(cuò),繼續(xù)發(fā)揚(yáng)光大!  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2009-06-01 16:14 EVE
            Package thre Yangchun in March, the dofus power leveling in this lineage 2 power leveling season, Shenzhen Shijiazhuang domain Jia Ming offices and international co-joined to organize activities for the players carefully ----" Plextor optical storage invite you together "QQ Huaxia" world ", to welcome all of you players come to participate.

              回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2009-09-30 09:58 brada
            很不錯(cuò),賜教了  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2010-07-21 09:05 Uniker
            學(xué)習(xí)  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2010-07-21 11:20 essay papers
            Your topic is supreme, but that could take a lot of time to create such of essay papers for not professional persons. Therefore the essay writing services will suggest to buy essay paper in such case.   回復(fù)  更多評(píng)論
              

            # Custom Essay 2010-09-27 14:58 SarahAngelinaJolie
            Very impressive, thank you for posting!
            I appreciate the information you provided is excellent post. Thank you for sharing you do.  回復(fù)  更多評(píng)論
              

            # Custom Essay 2010-09-27 15:00 Essay writing
            I found your blogs after read topic's related post now I feel my research is almost completed. Thanks to share this nice information.  回復(fù)  更多評(píng)論
              

            # custom essays 2010-10-22 13:38 termpaper99@gmail.com
            good job keep it up i like it to much so it is fantastic job you did this is such kinds of good work which always be good forever  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2010-10-25 20:05 research papers
            Such a nice article,Very impressive,I appreciate the information you provided is excellent post. Thank you for sharing you do.  回復(fù)  更多評(píng)論
              

            # dress[未登錄] 2010-11-29 10:29 dress
            I can't believe how much of this I just wasn't aware of. Thank you for bringing moreinformation to this topic for me. I'm truly grateful and really impressed.   回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2010-12-16 10:51 dog treats
            What a great article, you're really talented, hope to see more exciting  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2011-01-09 20:25 天之驕子'
            學(xué)習(xí)了,受益匪淺。  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2011-01-26 18:47 Access Healthcare
            How can I translate this ?  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2011-06-02 18:56 xzzzz1234
            great.
            <a href="http://www.realessaywriting.com/">essay</a> | <a href="http://www.realdissertationwriting.com/">dissertation</a> | <a href="http://www.realthesiswriting.com/">thesis</a> | <a href="http://www.realassignmentwriting.com/">assignment</a> | <a href="http://www.realcourseworkwriting.com/">coursework</a>  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2011-07-22 22:00 essay
            Didn't determine whether to buy history essay paper or to create it by yourself? I could recommend to receive free essays from the custom papers writing company, when you were pressured by time.   回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2011-07-25 17:14 jis117
            弱弱的問一句,lib是不是指操作系統(tǒng)提供的庫(kù),謝謝  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2011-09-02 18:31 chanel watches

            Sorry, but she won't be able to enjoy them anymore, while FSF can. XD  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2011-09-02 18:33 replica hermes

            -gden compass trilogy by phillip pullman  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2011-11-09 15:32 mosjin
            額。,謝謝。  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2012-01-05 11:14 Haiying_TT
            Good, thanks!  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用[未登錄] 2012-01-13 05:14 ZZ
            非常好的網(wǎng)站

            <a href="http://www.neojogos.com">Jogos online</a> | <a href="http://www.neojocuri.com">Jocuri online</a>

            <a href="http://proxy-list.co.uk" target="_blank">Proxy List</a>  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2012-01-18 19:44 essay
            Students’ life seems to be very strange thing and very often you have to opt for one thing at one time, then you do not have time to work on some else action. For example, different students should select between job and ancient essay paper writing. In that situation, we suggest to find the trusworthy cheap essay writing service to order the free essays in.   回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2012-02-06 15:29 business loans
            The loans are very useful for guys, which are willing to start their company. As a fact, this is comfortable to get a small business loan.   回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2012-05-25 23:19 xephi
            xiexie,hen you yong   回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2012-07-02 14:46 Buy an essays uk
            Don't understand how to start your academic assignment? Bother no more, just because you have got an opportunity to buy writing services "bestcustompapers.com" and focus on your affairs.   回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2012-07-02 14:52 Online essay scholarships
            Whenever you are sick and tired of completing writing assignments, a perfect suggestion for you will be to buy article writing bestcustompapers.com.  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2012-09-14 22:33 聽雨軒
            謝謝, 學(xué)習(xí)了受益很大  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2012-09-21 16:04 buy essays uk
            Open bestwritingservice.co.uk to order high quality uk essays online.  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2012-09-21 16:07 custom writing uk
            Select this home page if you have a need to purchase original essays uk. An A+ is secured!  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用[未登錄] 2012-09-22 09:22 lin
            為什么*.lib不行???  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用[未登錄] 2013-01-04 15:24 小明
            據(jù)我所知,至少#pragma comment(linker, "/ENTRY:main")這種的是可以的。  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2013-04-14 00:10 professional CV writing services
            Are you seeking how to write a resume or where to obtain resume formats and professional CV writing services? Or you just want to buy CV from certified resume writers? Only contact Resume company (perfect-resume.com).  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2013-04-14 00:12 professional CV writing services
            If you don’t know how to land the job of your dream, opt for bureaus available on the Internet which propose to buy resume perfect-resume.com done by leading experts.  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2013-04-14 00:30 essay writing reviews
            On the home page of this online resource you will be able to read extensive writing services reviews best-essay-sites.com. Therefore, you will discover respectable custom paper writing service to buy essays at.   回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2013-04-14 00:35 WritingsCentre rewiew
            When learners contact Best Essay Sites firm, they will find informative essay writing reviews of superior quality.  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2013-04-18 08:31 Click here
            Collaborate with certified resume writers and astonish your the HR manager with the masterly done curriculum vitae.  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2014-04-07 07:58 site
            Are you seeking how to write a resume or where to obtain resume templates and professional CV writing services? Or you merely would like to buy resumes from certified resume writers? Merely contact Resume company.  回復(fù)  更多評(píng)論
              

            # re: pragma comment的使用 2014-04-07 07:59 professional resume service
            Go to Exclusive-resume company if you are in need of professional resume writing. Having worked with this dependable writing agency, you will be aware of which service to choose for buying resume and where to run over resume writing samples. Don’t hesitate, order resume of good quality from certified resume writers.  回復(fù)  更多評(píng)論
              

            www性久久久com| 亚洲精品tv久久久久久久久久| 久久99热只有频精品8| 成人亚洲欧美久久久久| 伊人久久大香线焦AV综合影院| 国产亚洲欧美成人久久片| 久久久久一本毛久久久| 久久国产精品成人片免费| 色狠狠久久综合网| 99久久www免费人成精品 | 麻豆久久| 久久精品国内一区二区三区| 一个色综合久久| 天天久久狠狠色综合| 亚洲AV日韩精品久久久久久| 久久综合亚洲色HEZYO国产| 久久这里只有精品久久| 久久综合亚洲欧美成人| 久久综合亚洲色HEZYO国产| 99久久精品国产一区二区| 久久综合综合久久综合| 久久伊人精品一区二区三区| 久久久久婷婷| 久久99精品久久久久久9蜜桃| 久久国产亚洲精品麻豆| 国产精品免费看久久久| 人妻无码αv中文字幕久久 | 性欧美丰满熟妇XXXX性久久久 | 大美女久久久久久j久久| 精品久久一区二区三区| 1000部精品久久久久久久久| 久久发布国产伦子伦精品 | 欧美亚洲日本久久精品| 国产精品伊人久久伊人电影| 91久久九九无码成人网站| 国产精品久久久久影院色| 国产69精品久久久久777| 99久久成人国产精品免费| 99久久精品毛片免费播放| 久久99国产精品99久久| 国产一区二区精品久久凹凸|