winealsa.drv: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-11-30 01:47:02 +01:00 committed by Alexandre Julliard
parent fd65b0a1c3
commit 901fff3c07
2 changed files with 9 additions and 9 deletions

View File

@ -216,11 +216,11 @@ static void MIDI_NotifyClient(UINT wDevID, WORD wMsg,
DriverCallback(dwCallBack, uFlags, hDev, wMsg, dwInstance, dwParam1, dwParam2); DriverCallback(dwCallBack, uFlags, hDev, wMsg, dwInstance, dwParam1, dwParam2);
} }
static int midi_warn = 1; static BOOL midi_warn = TRUE;
/************************************************************************** /**************************************************************************
* midiOpenSeq [internal] * midiOpenSeq [internal]
*/ */
static int midiOpenSeq(int create_client) static int midiOpenSeq(BOOL create_client)
{ {
if (numOpenMidiSeq == 0) { if (numOpenMidiSeq == 0) {
if (snd_seq_open(&midiSeq, "default", SND_SEQ_OPEN_DUPLEX, 0) < 0) if (snd_seq_open(&midiSeq, "default", SND_SEQ_OPEN_DUPLEX, 0) < 0)
@ -229,7 +229,7 @@ static int midiOpenSeq(int create_client)
{ {
WARN("Error opening ALSA sequencer.\n"); WARN("Error opening ALSA sequencer.\n");
} }
midi_warn = 0; midi_warn = FALSE;
return -1; return -1;
} }
@ -474,7 +474,7 @@ static DWORD midOpen(WORD wDevID, LPMIDIOPENDESC lpDesc, DWORD dwFlags)
return MMSYSERR_INVALFLAG; return MMSYSERR_INVALFLAG;
} }
if (midiOpenSeq(1) < 0) { if (midiOpenSeq(TRUE) < 0) {
return MMSYSERR_ERROR; return MMSYSERR_ERROR;
} }
@ -732,7 +732,7 @@ static DWORD modOpen(WORD wDevID, LPMIDIOPENDESC lpDesc, DWORD dwFlags)
case MOD_FMSYNTH: case MOD_FMSYNTH:
case MOD_MIDIPORT: case MOD_MIDIPORT:
case MOD_SYNTH: case MOD_SYNTH:
if (midiOpenSeq(1) < 0) { if (midiOpenSeq(TRUE) < 0) {
return MMSYSERR_ALLOCATED; return MMSYSERR_ALLOCATED;
} }
break; break;
@ -1221,7 +1221,7 @@ static void ALSA_AddMidiPort(snd_seq_client_info_t* cinfo, snd_seq_port_info_t*
* *
* Initializes the MIDI devices information variables * Initializes the MIDI devices information variables
*/ */
static LONG ALSA_MidiInit(void) static BOOL ALSA_MidiInit(void)
{ {
static BOOL bInitDone = FALSE; static BOOL bInitDone = FALSE;
snd_seq_client_info_t *cinfo; snd_seq_client_info_t *cinfo;
@ -1234,7 +1234,7 @@ static LONG ALSA_MidiInit(void)
bInitDone = TRUE; bInitDone = TRUE;
/* try to open device */ /* try to open device */
if (midiOpenSeq(0) == -1) { if (midiOpenSeq(FALSE) == -1) {
return TRUE; return TRUE;
} }

View File

@ -770,7 +770,7 @@ HRESULT WINAPI AUDDRV_GetAudioEndpoint(GUID *guid, IMMDevice *dev, IAudioClient
int err; int err;
snd_pcm_stream_t stream; snd_pcm_stream_t stream;
snd_config_t *lconf; snd_config_t *lconf;
static int handle_underrun = 1; static BOOL handle_underrun = TRUE;
char alsa_name[256]; char alsa_name[256];
EDataFlow dataflow; EDataFlow dataflow;
HRESULT hr; HRESULT hr;
@ -816,7 +816,7 @@ HRESULT WINAPI AUDDRV_GetAudioEndpoint(GUID *guid, IMMDevice *dev, IAudioClient
if(err == -EINVAL){ if(err == -EINVAL){
ERR_(winediag)("PulseAudio \"%s\" %d without handle_underrun. Audio may hang." ERR_(winediag)("PulseAudio \"%s\" %d without handle_underrun. Audio may hang."
" Please upgrade to alsa_plugins >= 1.0.24\n", alsa_name, err); " Please upgrade to alsa_plugins >= 1.0.24\n", alsa_name, err);
handle_underrun = 0; handle_underrun = FALSE;
} }
}else }else
err = -EINVAL; err = -EINVAL;