mirror of https://github.com/tongzx/nt5src
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.
33 lines
438 B
33 lines
438 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
tsapi.h
|
|
|
|
Abstract:
|
|
|
|
Header file for definitions and structure for the remote API interface
|
|
for managing the NT Time Service.
|
|
|
|
Author:
|
|
|
|
Rod Gamache (rodga) 23-Jul-1996
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _TSAPI_
|
|
#define _TSAPI_
|
|
|
|
DWORD
|
|
WINAPI
|
|
TSNewSource(
|
|
IN LPWSTR ServerName,
|
|
IN LPWSTR SourceName,
|
|
IN DWORD Reserved
|
|
);
|
|
|
|
#endif // ifndef _TSAPI_
|