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.

43 lines
621 B

  1. /*++
  2. Copyright (c) 2002 Microsoft Corporation
  3. Module Name:
  4. atacct.h
  5. Abstract:
  6. Prototypes for the private net scheduler API.
  7. Revision History:
  8. --*/
  9. #ifndef _ATACCT_H_
  10. #define _ATACCT_H_
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. STDAPI
  15. GetNetScheduleAccountInformation(
  16. IN LPCWSTR pwszServerName,
  17. OUT DWORD ccAccount,
  18. OUT WCHAR wszAccount[]
  19. );
  20. STDAPI
  21. SetNetScheduleAccountInformation(
  22. IN LPCWSTR pwszServerName,
  23. IN LPCWSTR pwszAccount,
  24. IN LPCWSTR pwszPassword
  25. );
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29. #endif // _ATACCT_H_