31 lines
611 B
Plaintext
31 lines
611 B
Plaintext
|
//+-------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 1992 - 1995.
|
||
|
//
|
||
|
// File: lclor.idl
|
||
|
//
|
||
|
// Synopsis: This is a local DCOM95 interface to RPCSS
|
||
|
// for remote OXID resolution.
|
||
|
//
|
||
|
//
|
||
|
//--------------------------------------------------------------------------
|
||
|
[
|
||
|
uuid(355330e0-165a-11d0-af92-00aa00b50686),
|
||
|
version(1.0)
|
||
|
]
|
||
|
|
||
|
interface IOxidResolver
|
||
|
{
|
||
|
import "obase.idl";
|
||
|
|
||
|
error_status_t
|
||
|
RemoteResolveOXID
|
||
|
(
|
||
|
[in] OXID OxidServer,
|
||
|
[in] DWORD pointerToMidObject
|
||
|
);
|
||
|
}
|
||
|
|
||
|
|