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.
oldstable
Rob Shearman 2008-09-08 23:20:33 +01:00 committed by Alexandre Julliard
parent 244b14ba36
commit c36682685a
1 changed files with 2 additions and 2 deletions

View File

@ -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,