summaryrefslogtreecommitdiff
path: root/psxdev/bs.h
diff options
context:
space:
mode:
authorPixel <Pixel>2002-06-23 15:47:03 +0000
committerPixel <Pixel>2002-06-23 15:47:03 +0000
commitab0afb77b2a0bb9d5dd3eb27ea98c6f9f4e938c2 (patch)
treeee8f98b59c54cdfe1a7cc58094023993f1f1dc35 /psxdev/bs.h
parentb3c377e647b5eb14c2ed0ff27db4ac14a3fd4e2d (diff)
fixed u_* types for Windows.
Diffstat (limited to 'psxdev/bs.h')
-rw-r--r--psxdev/bs.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/psxdev/bs.h b/psxdev/bs.h
index 47a3762..4d66e0c 100644
--- a/psxdev/bs.h
+++ b/psxdev/bs.h
@@ -1,4 +1,4 @@
-/* $Id: bs.h,v 1.2 2002-06-23 11:19:06 Pixel Exp $ */
+/* $Id: bs.h,v 1.3 2002-06-23 15:47:03 Pixel Exp $ */
/*
libbs - library for the bitstream image format
@@ -36,6 +36,7 @@
#include <sys/types.h>
#include <stdarg.h>
+#include "generic.h"
typedef struct {
int width,height;
@@ -48,10 +49,10 @@ typedef struct {
#define BS_TYPE 2
typedef struct {
- u_short length;
- u_short magic;
- u_short q_scale;
- u_short type;
+ Uint16 length;
+ Uint16 magic;
+ Uint16 q_scale;
+ Uint16 type;
} bs_header_t;
/* prototypes */