Leaked source code of windows server 2003
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

  1. #ifndef LSCONTXT_DEFINED
  2. #define LSCONTXT_DEFINED
  3. #include "lsdefs.h"
  4. #include "lscbk.h"
  5. #include "lstxtcfg.h"
  6. #include "lsimeth.h"
  7. typedef struct
  8. {
  9. DWORD version; /* version number */
  10. DWORD cInstalledHandlers;
  11. const LSIMETHODS* pInstalledHandlers; /* Installed handlers */
  12. LSTXTCFG lstxtcfg; /* Straight-text configuration data */
  13. POLS pols; /* Client data for this context */
  14. LSCBK lscbk; /* LineServices client callbacks */
  15. BOOL fDontReleaseRuns; /* Optimization---don't call pfnReleaseRun */
  16. } LSCONTEXTINFO;
  17. LSERR WINAPI LsCreateContext(const LSCONTEXTINFO*, PLSC*);
  18. LSERR WINAPI LsDestroyContext(PLSC);
  19. #endif /* LSCONTXT_DEFINED */