www.digitalmars.com         C & C++   DMDScript  

c++.windows - typedef error

reply bobc <bob bobcowdery.plus.com> writes:
I'm trying to build libshout. I've got over a few problams but I'm sure there
will be lots more to come.

This is preventing me getting any further.

typedef unsigned __int32 uint32_t;

os.h|4|Error: missing ',' between declaration of '__int32' and 'uint32_t'|

Help appreciated.

Bob
Nov 27 2010
parent Walter Bright <newshound2 digitalmars.com> writes:
bobc wrote:
 I'm trying to build libshout. I've got over a few problams but I'm sure there
 will be lots more to come.
 
 This is preventing me getting any further.
 
 typedef unsigned __int32 uint32_t;
 
 os.h|4|Error: missing ',' between declaration of '__int32' and 'uint32_t'|
 
 Help appreciated.
That means that __int32 is not defined.
Mar 02 2011