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.
33 lines
1.1 KiB
33 lines
1.1 KiB
#ifndef LSQCORE_DEFINED
|
|
#define LSQCORE_DEFINED
|
|
|
|
#include "lsdefs.h"
|
|
#include "plssubl.h"
|
|
#include "plsqsinf.h"
|
|
#include "plscell.h"
|
|
|
|
|
|
LSERR QuerySublineCpPpointCore(
|
|
PLSSUBL, /* IN: pointer to subline info */
|
|
LSCP, /* IN: cpQuery */
|
|
DWORD, /* IN: nDepthQueryMax */
|
|
PLSQSUBINFO, /* OUT: array[nDepthQueryMax] of LSQSUBINFO */
|
|
DWORD*, /* OUT: nActualDepth */
|
|
PLSTEXTCELL); /* OUT: Text cell info */
|
|
|
|
LSERR QuerySublinePointPcpCore(
|
|
PLSSUBL, /* IN: pointer to subline info */
|
|
PCPOINTUV, /* IN: query point in the subline coordinate system:
|
|
Text flow is the text flow of the subline,
|
|
zero point is at the starting point. */
|
|
DWORD, /* IN: nDepthQueryMax */
|
|
PLSQSUBINFO, /* OUT: array[nDepthQueryMax] of LSQSUBINFO */
|
|
DWORD*, /* OUT: nActualDepth */
|
|
PLSTEXTCELL); /* OUT: Text cell info */
|
|
|
|
#define idObjText idObjTextChp
|
|
#define idObjNone (idObjTextChp - 1)
|
|
|
|
|
|
#endif /* !LSQCORE_DEFINED */
|
|
|