Changeset 297 for trunk/src/helpers/nlscache.c
- Timestamp:
- Oct 9, 2005, 3:11:51 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/nlscache.c
r257 r297 19 19 20 20 /* 21 * Copyright (C) 2001-200 2Ulrich Mller.21 * Copyright (C) 2001-2005 Ulrich Mller. 22 22 * This file is part of the "XWorkplace helpers" source package. 23 23 * This is free software; you can redistribute it and/or modify … … 258 258 ULONG cEntities) // in: array item count of paEntities or 0 259 259 { 260 BOOL fLocked = FALSE;260 volatile BOOL fLocked = FALSE; // XWP V1.0.4 (2005-10-09) [pr] 261 261 262 262 TRY_LOUD(excpt1) … … 342 342 PCSZ nlsGetString(ULONG ulStringID) 343 343 { 344 BOOL fLocked = FALSE;344 volatile BOOL fLocked = FALSE; // XWP V1.0.4 (2005-10-09) [pr] 345 345 PSZ pszReturn = "Error"; 346 346 … … 394 394 pszReturn = "Cannot get strings lock."; 395 395 } 396 CATCH(excpt1) {} END_CATCH(); 396 CATCH(excpt1) 397 { 398 pszReturn = "Error"; 399 } 400 END_CATCH(); 397 401 398 402 if (fLocked) … … 402 406 } 403 407 404
Note:
See TracChangeset
for help on using the changeset viewer.