Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problems declaring a BYTE array

Status
Not open for further replies.

drrep

Programmer
Mar 13, 2002
47
0
0
US
Hi,

I am trying to declare an array of bytes but am having compiling errors.

BYTE array[100]

Is there a header file of some sort I need to include?
 
You could use a char. They work in the same way as bytes and don't require a header file:

char array[100];
 
Thanks guys, windows.h did the trick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top