twain_32: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-11-25 22:27:36 +01:00 committed by Alexandre Julliard
parent 15b35f4d37
commit 6a847bd9cd
1 changed files with 2 additions and 2 deletions

View File

@ -100,12 +100,12 @@ twain_add_onedriver(const char *dsname) {
FreeLibrary (hmod);
}
static int detectionrun = 0;
static BOOL detectionrun = FALSE;
static void
twain_autodetect(void) {
if (detectionrun) return;
detectionrun = 1;
detectionrun = TRUE;
twain_add_onedriver("sane.ds");
twain_add_onedriver("gphoto2.ds");