Changeset 10 for trunk/txlib/txosapi.c
- Timestamp:
- 02/22/06 13:03:35 (3 years ago)
- Files:
-
- 1 modified
-
trunk/txlib/txosapi.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/txlib/txosapi.c
r1 r10 253 253 if (txfLargeAPItested == FALSE) 254 254 { 255 rc = DosLoadModule( dlmerror, 256 TXMAXLN, // error buffer and size 257 TXF_DOSCALLS, // name of dll 258 &doscalls); // module handle 259 if (rc == NO_ERROR) 255 if ((DosLoadModule( dlmerror, TXMAXLN, TXF_DOSCALLS, &doscalls)) == NO_ERROR) 260 256 { 261 257 TRACES(("Txf DOSCALLS module handle: %lu\n", doscalls)); … … 285 281 } 286 282 287 if (txfLargeAPIentryp.DosOpenLarge != NULL) 283 if ((txfLargeAPIentryp.DosOpenLarge != NULL) && 284 (txfLargeAPIentryp.DosSeekLarge != NULL) ) 288 285 { 289 286 rc = TRUE;