Added empty bootstrap.c and its build target
[AROS.git] / workbench / libs / pccard / pccard_intern.h
blob7e0340eb0b3206c5c7549dcf7def3d47b3de4cf7
1 /*
2 Copyright © 2011, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #ifndef PCCARD_LIBRARY_H
7 #define PCCARD_LIBRARY_H
9 #include <exec/types.h>
10 #include <exec/libraries.h>
11 #include <libraries/pccard.h>
13 #ifndef UPINT
14 #ifdef __AROS__
15 typedef IPTR UPINT;
16 typedef SIPTR PINT;
17 #else
18 typedef ULONG UPINT;
19 typedef LONG PINT;
20 #endif
21 #endif
23 struct PCCardBase
25 struct Library library;
28 #define LEWord(P) (*(P)|(*((P)+1)<<8))
30 #endif