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.
25 lines
490 B
25 lines
490 B
[ uuid(14a8831c-bc82-11d2-8a64-0008c7457e5d),
|
|
version(1.0),
|
|
pointer_default(unique)
|
|
]
|
|
interface SyncManager
|
|
{
|
|
|
|
typedef struct tagUString
|
|
{
|
|
short nlength;
|
|
[size_is(nlength)] unsigned short pString[];
|
|
} UString;
|
|
|
|
typedef enum tagSyncManagerCommands
|
|
{
|
|
smcSetBoot,
|
|
smcReboot,
|
|
smcNOP,
|
|
smcExec,
|
|
smcExit
|
|
} SyncManagerCommands;
|
|
|
|
/* 1 for Client, 0 for Server */
|
|
void GetCommand([in] int ClientOrServer, [out] SyncManagerCommands *cmd, [out] UString **param);
|
|
}
|