]>
git.saurik.com Git - wxWidgets.git/blob - utils/wxMMedia/mmtype.h
1 // /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMMedia (imported from wxSocket)
4 // Author: Guilhem Lavaux
7 // Copyright: (C) 1997, 1998, Guilhem Lavaux
8 // License: wxWindows license
9 // /////////////////////////////////////////////////////////////////////////////
15 #include <stl_config.h>
18 /// Type to use for 8 bits unsigned integers
19 typedef unsigned char wxUint8
;
20 /// Type to use for 16 bits unsigned integers
21 typedef unsigned short wxUint16
;
22 /// Type to use for 32 bits unsigned integers
23 typedef unsigned long wxUint32
;
25 /// Type to use for 64 bits unsigned integers
26 typedef unsigned long long wxUint64
;
29 /// Type to use for 8 bits signed integers
31 /// Type to use for 16 bits signed integers
32 typedef short wxInt16
;
33 /// Type to use for 32 bits signed integers
36 /// Type to use for 64 bits signed integers
37 typedef long long wxInt64
;