| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 798 人关注过本帖
标题:请高手帮看一下这个程序的错误
只看楼主 加入收藏
hstone
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2005-5-17
收藏
 问题点数:0 回复次数:1 
请高手帮看一下这个程序的错误

//Lpt.cpp #include <windows.h> #include <conio.h> //DLL的入口函数 BOOL WINAPI DLLEntrePoint( HINSTANCE hinstDLL, // handle to DLL module DWORD fdwReason,//reason for calling function LPVOID lpvReserved) // reserved {switch (fdwReason) {case DLL_PROCESS_ATTACH: {//可加入初始化代码 break;} case DLL_PROCESS_DETACH: {//可加入清除代码 break;}} return true;} Unsigned char InPort(unsigned int port) {return _inp(port);} int OutPort(unsigned int port,unsigned char value) {_outp(port,value); return 1;} LIBRARY LPT DESCRPRPTION "Lpt.dll" CODE PRELOAD MOVEABLE DDSCARDABLE DATA PRELOAD SINGLE EXPORTS Inport @1 Outport @2 下面是显示的错误信息 <html> <body> <pre> <h1>Build Log</h1> <h3> --------------------Configuration: 1 - Win32 Debug-------------------- </h3> <h3>Command Lines</h3> Creating temporary file "C:\DOCUME~1\mcharry\LOCALS~1\Temp\RSP21.tmp" with contents [ /nologo /MLd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Debug/1.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c "C:\Documents and Settings\mcharry\桌面\1.cpp" ] Creating command line "cl.exe @C:\DOCUME~1\mcharry\LOCALS~1\Temp\RSP21.tmp" <h3>Output Window</h3> Compiling... 1.cpp C:\Documents and Settings\mcharry\桌面\1.cpp(17) : error C2144: syntax error : missing ';' before type 'char' C:\Documents and Settings\mcharry\桌面\1.cpp(17) : error C2501: 'Unsigned' : missing storage-class or type specifiers C:\Documents and Settings\mcharry\桌面\1.cpp(17) : fatal error C1004: unexpected end of file found Error executing cl.exe.

<h3>Results</h3> 1.obj - 3 error(s), 0 warning(s) </pre> </body> </html>

搜索更多相关主题的帖子: calling include return reason 
2005-05-17 11:51
C++大粉丝
Rank: 4
等 级:贵宾
威 望:10
帖 子:477
专家分:0
注 册:2004-4-23
收藏
得分:0 
这样简单的问题自己解决!

I am a big fan of c plus plus.
2005-05-19 08:44
快速回复:请高手帮看一下这个程序的错误
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.013615 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved