diff options
author | Jose Fonseca <jfonseca@vmware.com> | 2015-06-25 12:34:43 +0100 |
---|---|---|
committer | Jose Fonseca <jfonseca@vmware.com> | 2015-06-25 12:34:43 +0100 |
commit | 84eac2523370fab8f92beef21cf9f2743060c85e (patch) | |
tree | b22945dcde577c94df32e5c64e7a83d4ee69864b /specs | |
parent | 5642f6578ec8ebcc73e1b9aa3826d37010a5b7ce (diff) |
d3dretrace: Dont retrace GetDC/ReleaseDC.
Diffstat (limited to 'specs')
-rw-r--r-- | specs/d3d9.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/specs/d3d9.py b/specs/d3d9.py index c98c7f21..21015149 100644 --- a/specs/d3d9.py +++ b/specs/d3d9.py @@ -363,8 +363,8 @@ IDirect3DSurface9.methods += [ StdMethod(HRESULT, "GetDesc", [Out(Pointer(D3DSURFACE_DESC), "pDesc")], sideeffects=False), StdMethod(HRESULT, "LockRect", [Out(Pointer(D3DLOCKED_RECT), "pLockedRect"), (ConstPointer(RECT), "pRect"), (D3DLOCK, "Flags")]), StdMethod(HRESULT, "UnlockRect", []), - StdMethod(HRESULT, "GetDC", [Out(Pointer(HDC), "phdc")]), - StdMethod(HRESULT, "ReleaseDC", [(HDC, "hdc")]), + StdMethod(HRESULT, "GetDC", [Out(Pointer(HDC), "phdc")], sideeffects=False), + StdMethod(HRESULT, "ReleaseDC", [(HDC, "hdc")], sideeffects=False), ] IDirect3DVolume9.methods += [ |