Remove unnecessary use of portLONG, portCHAR and portSHORT.

Change version number in headers.
This commit is contained in:
Richard Barry 2009-10-05 10:08:35 +00:00
parent 506dd1b7c8
commit 7f0c4ef656
123 changed files with 4610 additions and 4496 deletions

View file

@ -29,9 +29,9 @@
#pragma options align= packed
typedef struct
{
unsigned portSHORT status; /* control and status */
unsigned portSHORT length; /* transfer length */
unsigned portCHAR *data; /* buffer address */
unsigned short status; /* control and status */
unsigned short length; /* transfer length */
unsigned char *data; /* buffer address */
} FECBD;
/*
@ -85,7 +85,7 @@ typedef struct
int fecbd_init(int, int, int);
void fecbd_flush(int);
void fecbd_dump( void );
unsigned portLONG fecbd_get_start(int, int);
unsigned long fecbd_get_start(int, int);
FECBD* fecbd_rx_alloc(int);
FECBD* fecbd_tx_alloc(int);
FECBD* fecbd_tx_free(int);