home *** CD-ROM | disk | FTP | other *** search
- // xolehlp.h
- // contains DTC helper APIs used by SQL Server and application clients
- // to access a specific instance of a specific class transaction manager
- // the tmGUID is used to lookup a specific instance from the registry
- //
-
- #ifndef __XOLEHLP__H__
-
- #define __XOLEHLP__H__
-
- #define EXPORTAPI __declspec( dllexport ) HRESULT
-
-
- EXPORTAPI DtcGetTransactionManager( LPTSTR pszHost,
- LPTSTR pszTmName,
- /* in */ REFIID rid,
- /* in */ DWORD dwReserved1,
- /* in */ WORD wcbReserved2,
- /* in */ void FAR * pvReserved2,
- /*out */ void** ppvObject ) ;
-
- EXPORTAPI DtcSelectTransactionManager( LPTSTR pszHost,
- LPTSTR pszTmName,
- /* in */ REFIID rid,
- /* in */ DWORD dwReserved1,
- /* in */ WORD wcbReserved2,
- /* in */ void FAR * pvReserved2,
- /*out */ void** ppvObject ) ;
-
-
- #endif // __XOLEHLP__H__
-