2006-03-10 18:39:22 +00:00

164 lines
3.4 KiB
C

/***********************************************************************
*
* Copyright (C) 2005-2006 Novell, Inc. All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; version 2.1
* of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, Novell, Inc.
*
* To contact Novell about this file by physical or electronic mail,
* you may find current contact information at www.novell.com.
*
***********************************************************************/
#if ! defined ( NWTTS_H )
#define NWTTS_H
#if ! defined ( NWCALDEF_H )
# include "nwcaldef.h"
#endif
#include "npackon.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct
{
nuint32 systemElapsedTime;
nuint8 TTS_Supported;
nuint8 TTS_Enabled;
nuint16 TTS_VolumeNumber;
nuint16 TTS_MaxOpenTransactions;
nuint16 TTS_MaxTransactionsOpened;
nuint16 TTS_CurrTransactionsOpen;
nuint32 TTS_TotalTransactions;
nuint32 TTS_TotalWrites;
nuint32 TTS_TotalBackouts;
nuint16 TTS_UnfilledBackouts;
nuint16 TTS_DiskBlocksInUse;
nuint32 TTS_FATAllocations;
nuint32 TTS_FileSizeChanges;
nuint32 TTS_FilesTruncated;
nuint8 numberOfTransactions;
struct
{
nuint8 connNumber;
nuint8 taskNumber;
} connTask[235];
} TTS_STATS;
N_EXTERN_LIBRARY( NWCCODE )
NWTTSAbortTransaction
(
NWCONN_HANDLE conn
);
N_EXTERN_LIBRARY( NWCCODE )
NWTTSBeginTransaction
(
NWCONN_HANDLE conn
);
N_EXTERN_LIBRARY( NWCCODE )
NWTTSIsAvailable
(
NWCONN_HANDLE conn
);
N_EXTERN_LIBRARY( NWCCODE )
NWTTSGetControlFlags
(
NWCONN_HANDLE conn,
pnuint8 controlFlags
);
N_EXTERN_LIBRARY( NWCCODE )
NWTTSSetControlFlags
(
NWCONN_HANDLE conn,
nuint8 controlFlags
);
N_EXTERN_LIBRARY( NWCCODE )
NWTTSEndTransaction
(
NWCONN_HANDLE conn,
pnuint32 transactionNum
);
N_EXTERN_LIBRARY( NWCCODE )
NWTTSTransactionStatus
(
NWCONN_HANDLE conn,
nuint32 transactionNum
);
N_EXTERN_LIBRARY( NWCCODE )
NWTTSGetProcessThresholds
(
NWCONN_HANDLE conn,
pnuint8 logicalLockLevel,
pnuint8 physicalLockLevel
);
N_EXTERN_LIBRARY( NWCCODE )
NWTTSSetProcessThresholds
(
NWCONN_HANDLE conn,
nuint8 logicalLockLevel,
nuint8 physicalLockLevel
);
N_EXTERN_LIBRARY( NWCCODE )
NWTTSGetConnectionThresholds
(
NWCONN_HANDLE conn,
pnuint8 logicalLockLevel,
pnuint8 physicalLockLevel
);
N_EXTERN_LIBRARY( NWCCODE )
NWTTSSetConnectionThresholds
(
NWCONN_HANDLE conn,
nuint8 logicalLockLevel,
nuint8 physicalLockLevel
);
N_EXTERN_LIBRARY( NWCCODE )
NWEnableTTS
(
NWCONN_HANDLE conn
);
N_EXTERN_LIBRARY( NWCCODE )
NWDisableTTS
(
NWCONN_HANDLE conn
);
N_EXTERN_LIBRARY( NWCCODE )
NWGetTTSStats
(
NWCONN_HANDLE conn,
TTS_STATS N_FAR * ttsStats
);
#ifdef __cplusplus
}
#endif
#include "npackoff.h"
#endif