versadac  1
versadac - Scalable Recorder Firmware
uhh_mngr.h
1 /*****************************************************************************
2 FILE : U U H _ M N G R . H
3 VERSION : $Id: uhh_mngr.h 4938 2006-10-10 14:20:18Z martinto $
4 AUTHOR : Dave Storey
5 SYSTEM : Gnu C++
6 DESCRIPTION : UHH manager interface.
7  This is really just a convenience layer above the C variant of
8  the UHH message interface.
9 *****************************************************************************/
10 
11 
12 #if !defined __UHH_MNGR_H
13 #define __UHH_MNGR_H
14 
15 
16 #include "stdtypes.h"
17 
18 void uhhInitialise(uint8 z_uServerPri, uint16 z_uServerStk,
19  uint8 z_uShellPri, uint16 z_uShellStk,
20  uint8 z_uBgRfshPri, uint16 z_uBgRfshStk,
21  sint32 z_nBgRfshPer);
22 
23 bool uhhCreateSocketServer();
24 bool uhhCreateRefresher();
25 
26 #endif