我正在尝试在Windows 7上的Visual Studio社区2017中创建一个C ++程序以使用Windows API与串行端口设备进行通信。
尝试编译以下代码:
#include <iostream>
#include <Windows.h>
#include "stdafx.h"
#pragma hdrstop
using namespace std;
DCB dcb;
int main()
{
return 0;
}
我得到这些错误,这些错误指向
DCB dcb;
:error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
error C2146: syntax error: missing ';' before identifier 'dcb'
The DCB structure在Winbase.h中定义如下:
typedef struct _DCB {
DWORD DCBlength; /* sizeof(DCB) */
DWORD BaudRate; /* Baudrate at which running */
DWORD fBinary: 1; /* Binary Mode (skip EOF check) */
DWORD fParity: 1; /* Enable parity checking */
DWORD fOutxCtsFlow:1; /* CTS handshaking on output */
DWORD fOutxDsrFlow:1; /* DSR handshaking on output */
DWORD fDtrControl:2; /* DTR Flow control */
DWORD fDsrSensitivity:1; /* DSR Sensitivity */
DWORD fTXContinueOnXoff: 1; /* Continue TX when Xoff sent */
DWORD fOutX: 1; /* Enable output X-ON/X-OFF */
DWORD fInX: 1; /* Enable input X-ON/X-OFF */
DWORD fErrorChar: 1; /* Enable Err Replacement */
DWORD fNull: 1; /* Enable Null stripping */
DWORD fRtsControl:2; /* Rts Flow control */
DWORD fAbortOnError:1; /* Abort all reads and writes on Error */
DWORD fDummy2:17; /* Reserved */
WORD wReserved; /* Not currently used */
WORD XonLim; /* Transmit X-ON threshold */
WORD XoffLim; /* Transmit X-OFF threshold */
BYTE ByteSize; /* Number of bits/byte, 4-8 */
BYTE Parity; /* 0-4=None,Odd,Even,Mark,Space */
BYTE StopBits; /* 0,1,2 = 1, 1.5, 2 */
char XonChar; /* Tx and Rx X-ON character */
char XoffChar; /* Tx and Rx X-OFF character */
char ErrorChar; /* Error replacement char */
char EofChar; /* End of Input character */
char EvtChar; /* Received Event character */
WORD wReserved1; /* Fill for now. */
} DCB, *LPDCB;`
最佳答案
当您使用预编译头文件时,该行上方的所有内容
#include "stdafx.h"
(或指定用于预编译的头文件的名称)
被忽略。
尝试重新排列您的包含项以将其放在第一位。
on MSDN的更多解释,尤其重要的是:
编译器会将出现在.h文件之前的所有代码视为已预编译。它跳到与.h文件关联的#include指令之后,使用.pch文件中包含的代码,然后在文件名之后编译所有代码。
关于c++ - 声明对象为Windows API结构(DCB)-错误C4430:缺少类型说明符-假定为int,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48026220/