#pragma comment是什么意思? [英] What does #pragma comment mean?

查看:176
本文介绍了#pragma comment是什么意思?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

#pragma comment(lib, "kernel32")
#pragma comment(lib, "user32")


推荐答案

#pragma comment 是一个编译指令,指示Visual C ++在生成的目标文件中留下注释。

#pragma comment is a compiler directive which indicates Visual C++ to leave a comment in the generated object file. The comment can then be read by the linker when it processes object files.

#pragma comment(lib,libname)告诉链接器将libname库添加到库依赖项列表,如同您已将它添加到 Linker-> Input->项目属性中

#pragma comment(lib, libname) tells the linker to add the 'libname' library to the list of library dependencies, as if you had added it in the project properties at Linker->Input->Additional dependencies

查看 #pragma comment on MSDN

See #pragma comment on MSDN

这篇关于#pragma comment是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆