31 lines
627 B
Plaintext
31 lines
627 B
Plaintext
|
//+-------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
//
|
||
|
// Copyright (C) Microsoft Corporation, 1998 - 1999
|
||
|
//
|
||
|
// File: irnotify.idl
|
||
|
//
|
||
|
//--------------------------------------------------------------------------
|
||
|
|
||
|
[
|
||
|
uuid(209bb240-b919-11d1-bbb6-0080c75e4ec1),
|
||
|
version(1.0),
|
||
|
endpoint("ncalrpc:[Wireless Link Notification]")
|
||
|
]
|
||
|
interface NotifyLogon
|
||
|
{
|
||
|
void
|
||
|
UserLoggedOn(
|
||
|
[in] handle_t handle,
|
||
|
[out] error_status_t * pStatus
|
||
|
);
|
||
|
|
||
|
void
|
||
|
UserLoggedOff(
|
||
|
[in] handle_t handle,
|
||
|
[out] error_status_t * pStatus
|
||
|
);
|
||
|
}
|
||
|
|