Initialize stock_object cache.

svn path=/trunk/; revision=26447
This commit is contained in:
James Tabor 2007-04-21 01:56:47 +00:00
parent 28d7cf70fc
commit bdc91e1345

View file

@ -9,6 +9,8 @@
#include "precomp.h"
extern HGDIOBJ stock_objects[];
/*
* GDI32.DLL doesn't have an entry point. The initialization is done by a call
* to GdiDllInitialize(). This call is done from the entry point of USER32.DLL.
@ -67,7 +69,10 @@ GdiDllInitialize (
NtCurrentTeb()->GdiTebBatch.Offset = 0;
NtCurrentTeb()->GdiBatchCount = 0;
#endif
#if 0
// Very simple, the list will fill itself as it is needed.
RtlZeroMemory( &stock_objects, NB_STOCK_OBJECTS); //Assume Ros is dirty.
#endif
return TRUE;
}