diff options
Diffstat (limited to 'specs/d3d9.py')
-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 += [ |