Moved '_' symbol in structure definitions to comply with C/C++ standards

Thanks to @elfring
This commit is contained in:
Nikolaj Schlej 2016-04-09 13:47:28 +02:00
parent ba0779b415
commit d6909fe9b6
9 changed files with 69 additions and 69 deletions

View file

@ -18,14 +18,14 @@ WITHWARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
// Make sure we use right packing rules
#pragma pack(push, 1)
typedef struct _GBE_MAC_ADDRESS {
typedef struct GBE_MAC_ADDRESS_ {
UINT8 vendor[3];
UINT8 device[3];
} GBE_MAC_ADDRESS;
#define GBE_VERSION_OFFSET 10
typedef struct _GBE_VERSION {
typedef struct GBE_VERSION_ {
UINT8 id : 4;
UINT8 minor : 4;
UINT8 major;