You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
990 B
29 lines
990 B
#ifndef LSTXTWRD_DEFINED
|
|
#define LSTXTWRD_DEFINED
|
|
|
|
#include "lsidefs.h"
|
|
#include "lsgrchnk.h"
|
|
|
|
void FullPositiveSpaceJustification(
|
|
const LSGRCHNK*, /* IN: Group chunk to justify */
|
|
long, /* IN: itxtobjAfterStartSpaces */
|
|
long, /* IN: iwchAfterStartSpaces */
|
|
long, /* IN: itxtobjLast */
|
|
long, /* IN: iwchLast */
|
|
long*, /* IN: rgdu */
|
|
long*, /* IN: rgduGind */
|
|
long, /* IN: duToDistribute */
|
|
BOOL*); /* OUT: pfSpaceFound */
|
|
|
|
void NegativeSpaceJustification(
|
|
const LSGRCHNK*, /* IN: Group chunk to justify */
|
|
long, /* IN: itxtobjAfterStartSpaces */
|
|
long, /* IN: iwchAfterStartSpaces */
|
|
long, /* IN: itxtobjLast */
|
|
long, /* IN: iwchLast */
|
|
long*, /* IN: rgdu */
|
|
long*, /* IN: rgduGind */
|
|
long); /* IN: duSqueeze */
|
|
|
|
#endif /* !LSTXTWRD_DEFINED */
|
|
|