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.

18 lines
770 B

  1. // privapi.h
  2. // Angshuman Guha, aguha
  3. // April 13, 2000
  4. // These are private API which the recognizer DLL usually exports if built
  5. // with the "HWX_INTERNAL", "HWX_PENWINDOWS" and "HWX_PRIVAPI" flags on.
  6. int WINAPI HwxGetWordResults(HRC hrc, UINT cAlt, char *buffer, UINT buflen);
  7. int WINAPI HwxGetCosts(HRC hrc, UINT cAltMax, int *rgCost);
  8. int WINAPI HwxGetNeuralOutput(HRC hrc, void *buffer, UINT buflen);
  9. int WINAPI HwxGetInputFeatures(HRC hrc, unsigned short *rgFeat, UINT cWidth);
  10. int WINAPI HwxSetAnswer(char *sz);
  11. DWORD WINAPI HwxGetTiming(void *pVoid, BOOL bReset);
  12. // Extra user Dictionary API's always available
  13. int WINAPI AddWordsHWLW(HWL hwl, wchar_t *pwsz, UINT uType);
  14. HWL WINAPI CreateHWLW(HREC hrec, wchar_t * pwsz, UINT uType, DWORD dwReserved);