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.

61 lines
940 B

  1. #ifndef __SCCONSHEADER_H
  2. #define __SCCONSHEADER_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. LPCSTR
  7. _SCConsConnect(
  8. LPCWSTR lpszServerName,
  9. LPCWSTR lpszUserName,
  10. LPCWSTR lpszPassword,
  11. LPCWSTR lpszDomain,
  12. IN const int xRes,
  13. IN const int yRes,
  14. PCONNECTINFO pCI
  15. );
  16. LPCSTR
  17. _SCConsDisconnect(
  18. PCONNECTINFO pCI
  19. );
  20. LPCSTR
  21. _SCConsLogoff(
  22. PCONNECTINFO pCI
  23. );
  24. LPCSTR
  25. _SCConsClipboard(
  26. PCONNECTINFO pCI,
  27. const CLIPBOARDOPS eClipOp,
  28. LPCSTR lpszFileName
  29. );
  30. LPCSTR
  31. _SCConsStart(
  32. PCONNECTINFO pCI,
  33. LPCWSTR lpszAppName
  34. );
  35. LPCSTR
  36. _SCConsSenddata(
  37. PCONNECTINFO pCI,
  38. const UINT uiMessage,
  39. const WPARAM wParam,
  40. const LPARAM lParam
  41. );
  42. LPCSTR
  43. _SCConsCheck(
  44. PCONNECTINFO pCI,
  45. LPCSTR lpszCommand,
  46. LPCWSTR lpszParam
  47. );
  48. #ifdef __cplusplus
  49. }
  50. #endif
  51. #endif // __SCCONSHEADER_H