repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
alsa.audio: limit the supported frequencies to common set
[AROS.git]
/
workbench
/
libs
/
popupmenu
/
pmtypes.h
blob
1194a0fbb24e089f4a1d6b5eb8d0689844248858
1
//
2
// pmtypes.h
3
//
4
// OS independent exec/types.h equivalent
5
//
6
7
#ifndef PM_TYPES_H
8
#define PM_TYPES_H
9
10
#define AMIGA 1
11
12
#ifdef AMIGA
13
14
#include <exec/types.h>
15
16
#else
17
18
typedef
unsigned long
ULONG
;
19
typedef
long
LONG
;
20
21
typedef
unsigned short
UWORD
;
22
typedef
short
WORD
;
23
24
typedef
unsigned char
UBYTE
;
25
typedef
char
BYTE
;
26
27
typedef
char
BOOL
;
28
29
typedef
char
*
STRPTR
;
30
31
#define TRUE 1
32
#define FALSE 0
33
34
#endif
35
36
#endif
/* PM_TYPES_H */