Besteht denn diese Möglichkeit generell nicht mehr?
Code: Alles auswählen
Global DS.DrawingInfoStruct
Structure DrawingInfoStruct
Type.i
Window.i
DC.i
ReleaseProcedure.i
PixelBuffer.i
Pitch.i
Width.i
Height.i
Depth.i
EndStructure
Global DS.DrawingInfoStruct
Procedure ReleaseOutput()
ReleaseDC_(DS\Window,DS\DC)
EndProcedure
Procedure AnyWindowOutput(hWnd)
DS\Type=2
DS\Window=hWnd
DS\DC=GetWindowDC_(hWnd)
DS\ReleaseProcedure=@ReleaseOutput()
ProcedureReturn DS
EndProcedure