| atacct.h (6.1.7601.17514-Windows_7.0) | | atacct.h (6.3.9600.17415-Windows_8.1) |
| | |
| skipping to change at line 20 | | skipping to change at line 20 |
| Abstract: | | Abstract: |
| | |
| Prototypes for the AT Service Account API. | | Prototypes for the AT Service Account API. |
| | |
| Revision History: | | Revision History: |
| | |
| --*/ | | --*/ |
| | |
| #ifndef _ATACCT_H_ | | #ifndef _ATACCT_H_ |
| #define _ATACCT_H_ | | #define _ATACCT_H_ |
|
| | #include <winapifamily.h> |
| | |
| | #pragma region Desktop Family |
| | #if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) |
| | |
| #ifdef __cplusplus | | #ifdef __cplusplus |
| extern "C" { | | extern "C" { |
| #endif | | #endif |
| | |
| STDAPI | | STDAPI |
| GetNetScheduleAccountInformation( | | GetNetScheduleAccountInformation( |
| IN LPCWSTR pwszServerName, | | IN LPCWSTR pwszServerName, |
| OUT DWORD ccAccount, | | OUT DWORD ccAccount, |
|
| OUT __out_ecount(ccAccount) WCHAR wszAccount[] | | OUT _Out_writes_(ccAccount) WCHAR wszAccount[] |
| ); | | ); |
| | |
| STDAPI | | STDAPI |
| SetNetScheduleAccountInformation( | | SetNetScheduleAccountInformation( |
| IN LPCWSTR pwszServerName, | | IN LPCWSTR pwszServerName, |
| IN LPCWSTR pwszAccount, | | IN LPCWSTR pwszAccount, |
| IN LPCWSTR pwszPassword | | IN LPCWSTR pwszPassword |
| ); | | ); |
| | |
| #ifdef __cplusplus | | #ifdef __cplusplus |
| } | | } |
| #endif | | #endif |
| | |
|
| | #endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */ |
| | #pragma endregion |
| | |
| #endif // _ATACCT_H_ | | #endif // _ATACCT_H_ |
| | |
| End of changes. 3 change blocks. |
| 1 lines changed or deleted | | 8 lines changed or added |
|