]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLT_C_Component_WrapperInterface.h
FMD1 position at 320 (see FMD TDR table 4.1)
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLT_C_Component_WrapperInterface.h
CommitLineData
f23a6e1a 1// @(#) $Id$
2
3#ifndef ALIHLT_C_COMPONENT_WARAPPERINTERFACE_H
4#define ALIHLT_C_COMPONENT_WARAPPERINTERFACE_H
5/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
6 * See cxx source for full Copyright notice */
7
8/* AliHLT_C_Component_WrapperInterface
9 pure C interface to the AliRoot HLT component handler
10 utilized by the HLT PubSub Framework
11 */
12
13#include <AliHLTDataTypes.h>
14
15extern "C" {
16typedef void* AliHLTComponentHandle;
17
18 const AliHLTComponentHandle kEmptyHLTComponentHandle = 0;
19
20int AliHLT_C_Component_InitSystem( AliHLTComponentEnvironment* environ );
21int AliHLT_C_Component_DeinitSystem();
22int AliHLT_C_Component_LoadLibrary( const char* libraryPath );
23int AliHLT_C_Component_UnloadLibrary( const char* libraryPath );
24int AliHLT_C_CreateComponent( const char* componentType, void* environ_param, int argc, const char** argv, AliHLTComponentHandle* handle );
25void AliHLT_C_DestroyComponent( AliHLTComponentHandle );
26int AliHLT_C_ProcessEvent( AliHLTComponentHandle, AliHLTComponent_EventData evtData, AliHLTComponent_BlockData* blocks,
27 AliHLTComponent_TriggerData trigData, AliHLTUInt8_t* outputPtr,
28 AliHLTUInt32_t* size, AliHLTUInt32_t* outputBlockCnt,
29 AliHLTComponent_BlockData** outputBlocks,
30 AliHLTComponent_EventDoneData** edd );
31
32}
33
34#endif //ALIHLT_C_COMPONENT_WARAPPERINTERFACE_H