mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
disable thread-safety, seems to cause some problems atm
svn path=/trunk/; revision=8982
This commit is contained in:
parent
ba87a9d7a1
commit
aa25fb6d2c
1 changed files with 8 additions and 1 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: windc.c,v 1.63 2004/04/05 21:15:34 weiden Exp $
|
||||
/* $Id: windc.c,v 1.64 2004/04/05 21:26:30 weiden Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -55,11 +55,18 @@ static FAST_MUTEX DceListLock;
|
|||
static PDCE FirstDce = NULL;
|
||||
static HDC defaultDCstate;
|
||||
|
||||
#if 0
|
||||
|
||||
#define DCE_LockList() \
|
||||
ExAcquireFastMutex(&DceListLock)
|
||||
#define DCE_UnlockList() \
|
||||
ExReleaseFastMutex(&DceListLock)
|
||||
|
||||
#else
|
||||
#define DCE_LockList()
|
||||
#define DCE_UnlockList()
|
||||
#endif
|
||||
|
||||
#define DCX_CACHECOMPAREMASK (DCX_CLIPSIBLINGS | DCX_CLIPCHILDREN | \
|
||||
DCX_CACHE | DCX_WINDOW | DCX_PARENTCLIP)
|
||||
|
||||
|
|
Loading…
Reference in a new issue