comparison loader/driver.c @ 3465:4dad31e655b6

avifile merge. kabi: indent changes really suxxxx
author arpi
date Tue, 11 Dec 2001 22:58:14 +0000
parents 3189c317dfc1
children 174e2a58b4cd
comparison
equal deleted inserted replaced
3464:08c273282650 3465:4dad31e655b6
134 Setup_LDT_Keeper(); 134 Setup_LDT_Keeper();
135 135
136 if (!(npDriver = DrvAlloc(&hDriver, &uDrvResult))) 136 if (!(npDriver = DrvAlloc(&hDriver, &uDrvResult)))
137 return ((HDRVR) 0); 137 return ((HDRVR) 0);
138 138
139 if (!(npDriver->hDriverModule = expLoadLibraryA(win32_codec_name))) { 139 if (!(npDriver->hDriverModule = LoadLibraryA(win32_codec_name))) {
140 printf("Can't open library %s\n", win32_codec_name); 140 printf("Can't open library %s\n", win32_codec_name);
141 DrvFree(hDriver); 141 DrvFree(hDriver);
142 return ((HDRVR) 0); 142 return ((HDRVR) 0);
143 } 143 }
144 144