mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
c2d0d784c7
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
16 lines
570 B
Plaintext
16 lines
570 B
Plaintext
DdDeleteDirectDrawObject
|
|
|
|
we need release directdraw handler the cache or not cache handler
|
|
1. check see if DirectDrawGlobal->hDD is NULL or not
|
|
|
|
2. if both cache directdraw handler and public handler is NULL
|
|
then we need return false, fail to release it or it was already release
|
|
|
|
3. if public directdraw handler is not null we need release it
|
|
and return if we susses or not.
|
|
|
|
4. we need check if we need rest the internal cache if public being release
|
|
|
|
|
|
use NtGdiDdDeleteDirectDrawObject((HANDLE)DirectDrawGlobal->hDD);
|
|
to release a directdraw handler. |