Oct 19, 2002 #1 drrep Programmer Mar 13, 2002 47 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?
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?
Oct 20, 2002 #2 LuckyLuke Programmer Mar 28, 2001 188 NL I think you need to include windows.h Upvote 0 Downvote
Oct 20, 2002 #3 Bargaust Programmer Oct 20, 2002 2 GB You could use a char. They work in the same way as bytes and don't require a header file: char array[100]; Upvote 0 Downvote
You could use a char. They work in the same way as bytes and don't require a header file: char array[100];
Oct 20, 2002 Thread starter #4 drrep Programmer Mar 13, 2002 47 US Thanks guys, windows.h did the trick Upvote 0 Downvote