OSDN Git Service

audio: GUSword is uint16_t
authorJuan Quintela <quintela@redhat.com>
Tue, 25 Apr 2017 22:37:30 +0000 (00:37 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Thu, 4 May 2017 07:16:04 +0000 (09:16 +0200)
Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-id: 20170425223739.6703-18-quintela@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
hw/audio/gusemu.h

index 1c1a63c..69dadef 100644 (file)
 /* data types (need to be adjusted if neither a VC6 nor a C99 compatible compiler is used) */
 
 #if defined _WIN32 && defined _MSC_VER /* doesn't support other win32 compilers yet, do it yourself... */
- typedef unsigned short GUSword;
  typedef unsigned int GUSdword;
  typedef signed short GUSsample;
 #else
- typedef uint16_t GUSword;
  typedef uint32_t GUSdword;
  typedef int16_t GUSsample;
 #endif