]>
Commit | Line | Data |
---|---|---|
4d6306eb GL |
1 | // ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: mmtype.h | |
3 | // Purpose: wxMMedia (imported from wxSocket) | |
4 | // Author: Guilhem Lavaux | |
5 | // Created: 1997 | |
6 | // Updated: 1998 | |
7 | // Copyright: (C) 1997, 1998, Guilhem Lavaux | |
8 | // License: wxWindows license | |
9 | // ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef __SOCKTYPEH__ | |
12 | #define __SOCKTYPEH__ | |
13 | ||
14 | #ifdef __UNIX__ | |
15 | #include <stl_config.h> | |
16 | #endif | |
17 | ||
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; | |
24 | #if HAVE_UINT64 | |
25 | /// Type to use for 64 bits unsigned integers | |
26 | typedef unsigned long long wxUint64; | |
27 | #endif | |
28 | ||
29 | /// Type to use for 8 bits signed integers | |
30 | typedef char wxInt8; | |
31 | /// Type to use for 16 bits signed integers | |
32 | typedef short wxInt16; | |
33 | /// Type to use for 32 bits signed integers | |
34 | typedef long wxInt32; | |
35 | #if HAVE_UINT64 | |
36 | /// Type to use for 64 bits signed integers | |
37 | typedef long long wxInt64; | |
38 | #endif | |
39 | ||
40 | #endif | |
41 |