]> git.saurik.com Git - wxWidgets.git/blame - utils/wxMMedia/mmtype.h
Fixed gtk 1.0.6 corruped menu entry names.
[wxWidgets.git] / utils / wxMMedia / mmtype.h
CommitLineData
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
19typedef unsigned char wxUint8;
20/// Type to use for 16 bits unsigned integers
21typedef unsigned short wxUint16;
22/// Type to use for 32 bits unsigned integers
23typedef unsigned long wxUint32;
24#if HAVE_UINT64
25/// Type to use for 64 bits unsigned integers
26typedef unsigned long long wxUint64;
27#endif
28
29/// Type to use for 8 bits signed integers
30typedef char wxInt8;
31/// Type to use for 16 bits signed integers
32typedef short wxInt16;
33/// Type to use for 32 bits signed integers
34typedef long wxInt32;
35#if HAVE_UINT64
36/// Type to use for 64 bits signed integers
37typedef long long wxInt64;
38#endif
39
40#endif
41