Syntax - LayoutTransformText

/*******************************************/
/* This function transforms the Inpbuf     */
/* text according to the current layout    */
/* values.                                 */
/*******************************************/

#define INCL_LAYOUT
#include <layout.h>

LAYOUT_OBJECT  plh;       /* Layout Object handle */
PUCHAR         InpBuf;    /* Input text  */
PULONG         InpSize;   /* Size of InpBuf-number of bytes */
PVOID          OutBuf;    /* Output text */
PULONG         OutSize;   /* Size of outBuf-number of bytes */
PULONG         InpToOut;  /* Source to target index array */
PULONG         OutToInp;  /* Target to source index array */
PUCHAR         BidiLevel; /* Bidirectional levels array */
APIRET         RC;        /* Return value */

     RC  =  LayoutTransformText ( plh, InpBuf, InpSize, OutBuf, OutSize,
                                  InpToOut, OutToInp, BidiLevel);


[Back: Topics - LayoutTransformText]
[Next: Parameters - LayoutTransformText]