National Instruments 320685D-01 Drums User Manual


 
Appendix A Errors and Warnings
LabWindows/CVI Programmer Reference Manual A-20
©
National Instruments Corporation
Illegal type const TYPE. Compile
Error
You used more than one qualifier, such as
const or volatile, in a type specification;
for example,
const const int. Do not use
the
const and volatile qualifiers more
than once each in the same type.
Illegal type for symbol
'DllMain': TYPE.
Compile
Error
DllMain does not conform to the accepted
prototype.
int__stdcall DllMain
(HINSTANCE hinstDLL,
DWORD fdwReason,
LPVOID lpvReserved);
Illegal type for symbol
'WinMain': TYPE.
Compile
Error
WinMain does not conform to the accepted
prototype.
int__stdcall WinMain
(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpszCmdLine,
int nCmdShow);
Illegal type volatile
TYPE.
Compile
Error
You used more than one qualifier, such as
const or volatile, in a type specification;
for example,
const const int. Do not use
the
const and volatile qualifiers more
than once each in the same type.
Illegal use of type
name NAME.
Compile
Error
You used a typedef name in the context of a
primary expression. If you intended to use a
type cast, parenthesize the typedef name.
Otherwise you must use a macro name,
enumeration constant, variable name, or
function name in this context.
Illegal value matched to
asterisk.
Non-Fatal
Run-time Error
Integer argument that matches to an asterisk
(
*) in the format string has an invalid value
given the context in which it appears.
Table A-1.
Error Messages (Continued)
Error Message Type Error Comment
00ProRef.book : 07AppA.fm Page 20 Monday, March 9, 1998 3:23 PM