1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/audio/waveplay/files/patch-ac
Steve Price a91f257776 Add support for FreeBSD/Alpha and minor tweaks to Makefile.
PR:		15710
Submitted by:	maintainer
1999-12-27 21:47:15 +00:00

1.3 KiB

*** wavefmt.h~ Wed Sep 9 14:24:05 1998
--- wavefmt.h Wed Nov 24 15:05:57 1999
***************
*** 11,33 ****
/* $B9=B$BNDj5A (ref. MS-Windows mmsystem.h) */
typedef struct tWAVEFORMAT
{
! u_short wFormatTag;
! u_short nChannels;
! u_long nSamplesPerSec;
! u_long nAvgBytesPerSec;
! u_short nBlockAlign;
! u_short wBitsPerSample;
} WAVEFORMAT, *PWAVEFORMAT;
 
typedef struct tWAVEFORMATEX
{
! u_short wFormatTag;
! u_short nChannels;
! u_long nSamplesPerSec;
! u_long nAvgBytesPerSec;
! u_short nBlockAlign;
! u_short wBitsPerSample;
! u_short cbSize;
} WAVEFORMATEX, *PWAVEFORMATEX;
 
#endif /* _WAVE_FMT_H_ */
--- 11,33 ----
/* $B9=B$BNDj5A (ref. MS-Windows mmsystem.h) */
typedef struct tWAVEFORMAT
{
! u_int16_t wFormatTag;
! u_int16_t nChannels;
! u_int32_t nSamplesPerSec;
! u_int32_t nAvgBytesPerSec;
! u_int16_t nBlockAlign;
! u_int16_t wBitsPerSample;
} WAVEFORMAT, *PWAVEFORMAT;
 
typedef struct tWAVEFORMATEX
{
! u_int16_t wFormatTag;
! u_int16_t nChannels;
! u_int32_t nSamplesPerSec;
! u_int32_t nAvgBytesPerSec;
! u_int16_t nBlockAlign;
! u_int16_t wBitsPerSample;
! u_int16_t cbSize;
} WAVEFORMATEX, *PWAVEFORMATEX;
 
#endif /* _WAVE_FMT_H_ */