Changeset 297 for branches/branch-1-0/src/helpers/nlscache.c
- Timestamp:
- Oct 9, 2005, 3:11:51 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1-0/src/helpers/nlscache.c
r278 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 … … 279 279 PCSZ nlsGetString(ULONG ulStringID) 280 280 { 281 BOOL fLocked = FALSE;281 volatile BOOL fLocked = FALSE; // XWP V1.0.4 (2005-10-09) [pr] 282 282 PSZ pszReturn = "Error"; 283 283 … … 331 331 pszReturn = "Cannot get strings lock."; 332 332 } 333 CATCH(excpt1) {} END_CATCH(); 333 CATCH(excpt1) 334 { 335 pszReturn = "Error"; 336 } 337 END_CATCH(); 334 338 335 339 if (fLocked)
Note:
See TracChangeset
for help on using the changeset viewer.