I'm porting a header with this declaration:

 struct tMaterialInfo {     
    char strName[255]; // the texture name
    char strFile [255]; // the texture
     BYTE color [3]; // the color of the object 
 };

The header has the following includes:

#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <fstream>
#include <vector>
#include <gl\gl.h> // Header File For The OpenGL32 Library
#include<gl\glu.h>// Header File For The GLu32 Library
#include <gl\glaux.h>

Where does that BYTE come from?

link|improve this question

+1 for clearly stating the question, as well as providing enough context to provide a useful answer. – RBerteig Dec 20 '10 at 1:12
feedback

3 Answers

up vote 9 down vote accepted

I'm guessing it's from Windows.

A byte (8 bits).

This type is declared in WinDef.h as follows:

typedef unsigned char BYTE;

link|improve this answer
2  
And one should add that it shouldn't be used. All of the all-caps integer/string types are useless code-uglification that serve only to make code unnecessarily tied to Windows. Simply use the corresponding standard types like unsigned char or uint8_t (which must be identical if the latter exists at all). – R.. Dec 20 '10 at 1:49
1  
stdint was not not added to Visual Studio until 2010. – user295190 Dec 20 '10 at 1:53
3  
If you are using WINAPI functions you should be using Windows datatypes. social.msdn.microsoft.com/Forums/en/vcgeneral/thread/… – user295190 Dec 20 '10 at 2:01
feedback

Almost certainly from one of the many headers included from windows.h. The Windows SDK has included typedefs for BYTE, WORD, and DWORD since at least Windows 2.0 days (the earliest Windows SDK I recall having).

link|improve this answer
feedback

If you are programming C for Windows I assume you are using Visual Studio to develop. You can right click on any keyword and select Go To Definition F12 to find where it is defined.

BYTE is defined in WinDef.h

typedef unsigned char       BYTE;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.