-
Notifications
You must be signed in to change notification settings - Fork 0
/
dalmaRolLib.h
34 lines (28 loc) · 1.49 KB
/
dalmaRolLib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef __DALMAROLLIB_H__
#define __DALMAROLLIB_H__
/*----------------------------------------------------------------------------*
* Copyright (c) 2021 Southeastern Universities Research Association, *
* Thomas Jefferson National Accelerator Facility *
* *
* This software was developed under a United States Government license *
* described in the NOTICE file included as part of this distribution. *
* *
* Author: Bryan Moffit *
* [email protected] Jefferson Lab, MS-12B3 *
* Phone: (757) 269-5660 12000 Jefferson Ave. *
* Fax: (757) 269-5800 Newport News, VA 23606 *
* *
*----------------------------------------------------------------------------*
*
* Description:
* Header for Library to support piping standard out to daLogMsg
*
*----------------------------------------------------------------------------*/
#include <stdint.h>
#define DALMAGO dalmaRedirectEnable(1);
#define DALMASTOP dalmaRedirectDisable();
int32_t dalmaInit(int32_t echo);
int32_t dalmaClose();
void dalmaRedirectEnable(int echo);
void dalmaRedirectDisable();
#endif /* __DALMAROLLIB_H__ */