• <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++博客 :: 首頁 :: 聯(lián)系 ::  :: 管理
              163 Posts :: 4 Stories :: 350 Comments :: 0 Trackbacks

            常用鏈接

            留言簿(48)

            我參與的團隊

            搜索

            •  

            積分與排名

            • 積分 - 400060
            • 排名 - 59

            最新評論

            閱讀排行榜

            評論排行榜

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

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

            • /EXPORT

            • /INCLUDE

            • /MANIFESTDEPENDENCY

            • /MERGE

            • /SECTION

            (1)/DEFAULTLIB:library

            /DEFAULTLIB 選項將一個 library 添加到 LINK 在解析引用時搜索的庫列表。用 /DEFAULTLIB 指定的庫在命令行上指定的庫之后和 .obj 文件中指定的默認庫之前被搜索。

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

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

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

            DATA 關(guān)鍵字指定導出項為數(shù)據(jù)項。客戶程序中的數(shù)據(jù)項必須用 extern __declspec(dllimport) 來聲明。
            有三種導出定義的方法,按照建議的使用順序依次為:

            1. 源代碼中的 __declspec(dllexport)

            2. .def 文件中的 EXPORTS 語句

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

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

            (3)/INCLUDE:symbol

            /INCLUDE 選項通知鏈接器將指定的符號添加到符號表。

            若要指定多個符號,請在符號名稱之間鍵入逗號 (,)、分號 (;) 或空格。在命令行上,對每個符號指定一次 /INCLUDE:symbol
            鏈接器通過將包含符號定義的對象添加到程序來解析 symbol。該功能對于添包含不會鏈接到程序的庫對象非常有用。用該選項指定符號將通過 /OPT:REF 重寫該符號的移除。



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


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

            Feedback

            # re: pragma comment的使用 2009-02-12 09:20 sven
            受益,謝謝,  回復  更多評論
              

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

            # 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.

              回復  更多評論
              

            # re: pragma comment的使用 2009-09-30 09:58 brada
            很不錯,賜教了  回復  更多評論
              

            # re: pragma comment的使用 2010-07-21 09:05 Uniker
            學習  回復  更多評論
              

            # 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.   回復  更多評論
              

            # 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.  回復  更多評論
              

            # 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.  回復  更多評論
              

            # 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  回復  更多評論
              

            # 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.  回復  更多評論
              

            # 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.   回復  更多評論
              

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

            # re: pragma comment的使用 2011-01-09 20:25 天之驕子'
            學習了,受益匪淺。  回復  更多評論
              

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

            # 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>  回復  更多評論
              

            # 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.   回復  更多評論
              

            # re: pragma comment的使用 2011-07-25 17:14 jis117
            弱弱的問一句,lib是不是指操作系統(tǒ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  回復  更多評論
              

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

            -gden compass trilogy by phillip pullman  回復  更多評論
              

            # re: pragma comment的使用 2011-11-09 15:32 mosjin
            額。,謝謝。  回復  更多評論
              

            # re: pragma comment的使用 2012-01-05 11:14 Haiying_TT
            Good, thanks!  回復  更多評論
              

            # 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>  回復  更多評論
              

            # 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.   回復  更多評論
              

            # 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.   回復  更多評論
              

            # re: pragma comment的使用 2012-05-25 23:19 xephi
            xiexie,hen you yong   回復  更多評論
              

            # 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.   回復  更多評論
              

            # 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.  回復  更多評論
              

            # re: pragma comment的使用 2012-09-14 22:33 聽雨軒
            謝謝, 學習了受益很大  回復  更多評論
              

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

            # 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!  回復  更多評論
              

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

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

            # 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).  回復  更多評論
              

            # 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.  回復  更多評論
              

            # 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.   回復  更多評論
              

            # 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.  回復  更多評論
              

            # 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.  回復  更多評論
              

            # 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.  回復  更多評論
              

            # 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.  回復  更多評論
              

            99久久免费国产精品热| 一级女性全黄久久生活片免费| 精产国品久久一二三产区区别| 日韩亚洲国产综合久久久| 三级片免费观看久久| 一本一本久久aa综合精品| 九九精品99久久久香蕉| 久久精品国产亚洲网站| 欧美日韩中文字幕久久久不卡| 一本久久综合亚洲鲁鲁五月天| 久久国产高潮流白浆免费观看| 国内精品久久久久久久涩爱 | 香蕉久久影院| …久久精品99久久香蕉国产| 亚洲国产精品无码久久九九| 久久久九九有精品国产| 久久香蕉国产线看观看精品yw| 久久精品国产一区二区三区| 欧美va久久久噜噜噜久久| 欧美久久久久久午夜精品| 久久99精品国产99久久| 无码人妻久久久一区二区三区| 久久精品国产精品亚洲下载| 久久久久高潮毛片免费全部播放 | 久久天天躁狠狠躁夜夜2020老熟妇| 国产69精品久久久久9999APGF| 久久人人爽人人精品视频| 99久久免费只有精品国产| 国产精品久久国产精麻豆99网站| 久久久无码精品亚洲日韩蜜臀浪潮| 久久久久国产一级毛片高清板| 99热都是精品久久久久久| 久久精品国产亚洲AV大全| 人妻精品久久久久中文字幕一冢本 | 中文字幕成人精品久久不卡 | 久久激情亚洲精品无码?V| 亚洲午夜久久久精品影院| 99久久99久久精品国产片| 久久精品国产影库免费看| 久久精品草草草| 99久久综合狠狠综合久久|