Is there any way in VB 2003 to define the following code:
Code:
/* Global Type Definitions */ typedef unsigned char byte; // 'byte' is an 8-bit unsigned value typedef unsigned int word; // 'word' is a 16-bit unsigned value /* Global Structure Definitions */ struct byte_low_hi { byte low_byte; byte high_byte; }; /* Global Union Definitions */ union word_byte { word word16; struct byte_low_hi byte8; };
Comment