Commit c3668268 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

include: Fix signature of NearestPoint function of IInkDisp interface in msinkaut.idl.

Since the PointOnStroke and DistanceFromPacket parameters are [in, out] parameters the must be pointers.
parent 244b14ba
...@@ -637,8 +637,8 @@ cpp_quote("#endif /* _WINGDI_ */") ...@@ -637,8 +637,8 @@ cpp_quote("#endif /* _WINGDI_ */")
HRESULT NearestPoint( HRESULT NearestPoint(
[in] long X, [in] long X,
[in] long Y, [in] long Y,
[in, out] float PointOnStroke, [in, out] float *PointOnStroke,
[in, out] float DistanceFromPacket, [in, out] float *DistanceFromPacket,
[out, retval] IInkStrokeDisp **Stroke); [out, retval] IInkStrokeDisp **Stroke);
HRESULT CreateStrokes( HRESULT CreateStrokes(
[in] VARIANT StrokeIds, [in] VARIANT StrokeIds,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment