trnlcl.idl 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //-----------------------------------------------------------------------------
  2. // File: trnlcl.idl
  3. //
  4. // Copyright: Copyright (c) Microsoft Corporation
  5. //
  6. // Contents: OLE DB interface definition
  7. //
  8. // Comments:
  9. //
  10. //-----------------------------------------------------------------------------
  11. #include "idlmulti.h"
  12. //
  13. REMOTED_INTERFACE(0c733a5f-2a1c-11ce-ade5-00aa0044773d)
  14. interface ITransactionLocal : ITransaction {
  15. [local]
  16. HRESULT GetOptionsObject(
  17. [out] ITransactionOptions ** ppOptions
  18. );
  19. [call_as(GetOptionsObject)]
  20. HRESULT RemoteGetOptionsObject(
  21. [out] ITransactionOptions ** ppOptions,
  22. [out] IErrorInfo ** ppErrorInfoRem
  23. );
  24. [local]
  25. HRESULT StartTransaction(
  26. [in] ISOLEVEL isoLevel,
  27. [in] ULONG isoFlags,
  28. [in] ITransactionOptions * pOtherOptions,
  29. [out] ULONG * pulTransactionLevel
  30. );
  31. [call_as(StartTransaction)]
  32. HRESULT RemoteStartTransaction(
  33. [in] ISOLEVEL isoLevel,
  34. [in] ULONG isoFlags,
  35. [in] ITransactionOptions * pOtherOptions,
  36. [in, out, unique] ULONG * pulTransactionLevel,
  37. [out] IErrorInfo ** ppErrorInfoRem
  38. );
  39. }