mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
added GDI kernel mode graphics engine skeleton
svn path=/trunk/; revision=493
This commit is contained in:
parent
56b16dbf01
commit
905776a29b
1 changed files with 13 additions and 0 deletions
13
reactos/subsys/win32k/main/dllmain.c
Normal file
13
reactos/subsys/win32k/main/dllmain.c
Normal file
|
@ -0,0 +1,13 @@
|
|||
|
||||
DllMain()
|
||||
{
|
||||
/* %%% handle GDI initialization here */
|
||||
}
|
||||
|
||||
HDC GDICreateDC(LPCWSTR Driver,
|
||||
LPCWSTR Device,
|
||||
CONST PDEVMODE InitData)
|
||||
{
|
||||
/* %%% initialize device driver here on first call for display DC. */
|
||||
}
|
||||
|
Loading…
Reference in a new issue