就这样一个程序,我就无语了还
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了就这样一个程序,我就无语了还相关的知识,希望对你有一定的参考价值。
#include<windows.h>
void main()
if(OpenClipboard())
CloseClipboard();
我最近制作操作剪贴板的程序时,总是提示
E:\c++\program\复件 1.cpp(5) : error C2660: 'OpenClipboard' : function does not take 0 parameters
最后,我就写了这么一个程序,他居然都出错,这个函数明明可以不带参数的啊,求高人指点
改为:
if(OpenClipboard(NULL))
CloseClipboard(); 参考技术A Syntax
BOOL OpenClipboard( HWND hWndNewOwner
);
Parameters
hWndNewOwner
[in] Handle to the window to be associated with the open clipboard. If this parameter is NULL, the open clipboard is associated with the current task.
以上来自MSDN, 没看到说可以不带参数, 不过看到可以用NULL做参数
以上是关于就这样一个程序,我就无语了还的主要内容,如果未能解决你的问题,请参考以下文章
我想为具有多任务处理功能的 android 开发一个音乐播放器应用程序,这样我就可以在不关闭音乐播放器的情况下使用不同的应用程序......帮助 plzz [关闭]
如何编译 c++ 文件的子集,这样我就不必编译其他文件 MinGW