Source code of Windows XP (NT5)
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.

30 lines
939 B

  1. #ifndef LSQSUBL_DEFINED
  2. #define LSQSUBL_DEFINED
  3. /* Line services formatter fetch/dispatcher interface (to LsCreateLine())
  4. */
  5. #include "lsdefs.h"
  6. #include "plssubl.h"
  7. #include "plsqsinf.h"
  8. #include "plscell.h"
  9. LSERR WINAPI LsQueryCpPpointSubline(
  10. PLSSUBL, /* IN: subline context */
  11. LSCP, /* IN: cpQuery */
  12. DWORD, /* IN: nDepthQueryMax */
  13. PLSQSUBINFO, /* OUT: array[nDepthQueryMax] of LSQSUBINFO */
  14. DWORD*, /* OUT: nActualDepth */
  15. PLSTEXTCELL); /* OUT: Text cell info */
  16. LSERR WINAPI LsQueryPointPcpSubline(
  17. PLSSUBL, /* IN: subline context */
  18. PCPOINTUV, /* IN: query point from the subline beginning */
  19. DWORD, /* IN: nDepthQueryMax */
  20. PLSQSUBINFO, /* OUT: array[nDepthQueryMax] of LSQSUBINFO */
  21. DWORD*, /* OUT: nActualDepth */
  22. PLSTEXTCELL); /* OUT: Text cell info */
  23. #endif /* !LSQSUBL_DEFINED */