共用方式為


EditStreamCallback

Send Feedback

The EditStreamCallback function is an application-defined callback function used with the EM_STREAMIN and EM_STREAMOUT messages. It is used to transfer a stream of data to or from a RichInk control.

DWORD CALLBACK EditStreamCallback(
  DWORD dwCookie,
  LPBYTE pbBuff,
  LONG cb,
  LONG* pcb 
);

Parameters

  • dwCookie
    An application-defined value.
  • pbBuff
    A pointer to a buffer.
  • cb
    The number of bytes to read or write.
  • pcb
    A pointer to the number of bytes transferred.

Return Values

None.

Remarks

The EDITSTREAMCALLBACK type defines a pointer to this callback function. EditStreamCallback is a placeholder for the application-defined function name.

Requirements

Pocket PC: Pocket PC 2000 and later
Smartphone: None
OS Versions: Windows CE 3.0 and later
Header: richink.h
Library: richink.lib

See Also

RichInk Control Functions

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.