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.
25 lines
701 B
25 lines
701 B
#ifndef LSCONTXT_DEFINED
|
|
#define LSCONTXT_DEFINED
|
|
|
|
#include "lsdefs.h"
|
|
#include "lscbk.h"
|
|
#include "lstxtcfg.h"
|
|
#include "lsimeth.h"
|
|
|
|
|
|
typedef struct
|
|
{
|
|
DWORD version; /* version number */
|
|
DWORD cInstalledHandlers;
|
|
const LSIMETHODS* pInstalledHandlers; /* Installed handlers */
|
|
LSTXTCFG lstxtcfg; /* Straight-text configuration data */
|
|
POLS pols; /* Client data for this context */
|
|
LSCBK lscbk; /* LineServices client callbacks */
|
|
BOOL fDontReleaseRuns; /* Optimization---don't call pfnReleaseRun */
|
|
} LSCONTEXTINFO;
|
|
|
|
|
|
LSERR WINAPI LsCreateContext(const LSCONTEXTINFO*, PLSC*);
|
|
LSERR WINAPI LsDestroyContext(PLSC);
|
|
|
|
#endif /* LSCONTXT_DEFINED */
|