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_ */")
HRESULT NearestPoint(
[in] long X,
[in] long Y,
[in, out] float PointOnStroke,
[in, out] float DistanceFromPacket,
[in, out] float *PointOnStroke,
[in, out] float *DistanceFromPacket,
[out, retval] IInkStrokeDisp **Stroke);
HRESULT CreateStrokes(
[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