mirror of https://github.com/UMSKT/xpmgr.git
35 lines
629 B
Plaintext
35 lines
629 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// File: rstwta.idl
|
|
//
|
|
// Copyright: Copyright (c) Microsoft Corporation
|
|
//
|
|
// Contents: OLE DB interface definition
|
|
//
|
|
// Comments:
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "idlmulti.h"
|
|
//
|
|
|
|
#if( OLEDBVER >= 0x0200 )
|
|
REMOTED_INTERFACE(0c733a73-2a1c-11ce-ade5-00aa0044773d)
|
|
#else
|
|
LOCAL_INTERFACE(0c733a73-2a1c-11ce-ade5-00aa0044773d)
|
|
#endif
|
|
|
|
|
|
interface IRowsetWatchAll : IUnknown {
|
|
|
|
HRESULT Acknowledge(
|
|
);
|
|
|
|
HRESULT Start(
|
|
);
|
|
|
|
HRESULT StopWatching(
|
|
);
|
|
|
|
}
|
|
|