National Instruments 320685D-01 Drums User Manual


 
Appendix A Errors and Warnings
©
National Instruments Corporation A-23 LabWindows/CVI Programmer Reference Manual
Invalid size for a real. Non-Fatal
Run-time Error
4 and 8 are the only valid sizes that you can
specify with the
b modifier for the f (real)
specifier.
Invalid size for an
integer.
Non-Fatal
Run-time Error
1, 2, and 4 are the only valid sizes that you
can specify with the
b modifier for the i, d,
x, o, and c modifiers.
Invalid storage class. Compile
Error
extern is the only allowable explicit
storage class specifier for a function
declaration that has block scope.
Invalid struct field
declarations.
Compile
Error
Compiler encountered an invalid token while
processing a struct or union type declaration.
The compiler expected a token that begins a
member type specifier where the type
specifier is one of
void, char, short, int,
long, float, double, signed, unsigned,
<
struct-or-union-specifier
>,
<
enum-specifier
>, or
<
typedef-name
>.
Invalid type argument
TYPE to sizeof.
Compile
Error
You applied sizeof operator to a function
type or incomplete struct or union type. A
function type has no size, and the size of an
incomplete struct or union type is unknown
before its full declaration.
Invalid type
specification.
Compile
Error
Combination of type specifiers is
incompatible. You can use the type specifier
short only in combination with int. You
can use the type specifier
long only in
combination with
int and double. You can
use the type specifiers
signed and
unsigned only in combination with one
of the basic integer types (
char, short,
int, long).
Table A-1.
Error Messages (Continued)
Error Message Type Error Comment
00ProRef.book : 07AppA.fm Page 23 Monday, March 9, 1998 3:23 PM