windows-nt/Source/XPSP1/NT/admin/services/sched/at/atacct.h

44 lines
578 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
/*++
Copyright (c) 2002 Microsoft Corporation
Module Name:
atacct.h
Abstract:
Prototypes for the private net scheduler API.
Revision History:
--*/
#ifndef _ATACCT_H_
#define _ATACCT_H_
#ifdef __cplusplus
extern "C" {
#endif
STDAPI
GetNetScheduleAccountInformation(
IN LPCWSTR pwszServerName,
OUT DWORD ccAccount,
OUT WCHAR wszAccount[]
);
STDAPI
SetNetScheduleAccountInformation(
IN LPCWSTR pwszServerName,
IN LPCWSTR pwszAccount,
IN LPCWSTR pwszPassword
);
#ifdef __cplusplus
}
#endif
#endif // _ATACCT_H_