Fixed newline characters throughout the code
[com/gs-lite.git] / src / lib / gscphost / include / lappregistries.h
1 /* ------------------------------------------------
2  Copyright 2014 AT&T Intellectual Property
3  Licensed under the Apache License, Version 2.0 (the "License");
4  you may not use this file except in compliance with the License.
5  You may obtain a copy of the License at
6  
7  http://www.apache.org/licenses/LICENSE-2.0
8  
9  Unless required by applicable law or agreed to in writing, software
10  distributed under the License is distributed on an "AS IS" BASIS,
11  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  See the License for the specific language governing permissions and
13  limitations under the License.
14  ------------------------------------------- */
15 #ifndef LAPPREGISTRIES_H
16 #define LAPPREGISTRIES_H
17 #include "gsconfig.h"
18 #include "gstypes.h"
19 #include <fta.h>
20 #include <gscpipc.h>
21
22 /* adds the remote streamid with its associated msgid and ringbuf
23  */
24 gs_retval_t streamregistry_add(FTAID f,struct ringbuf * r);
25
26 /* removes streamid from registry for specific msgid */
27 void streamregistry_remove(FTAID f);
28
29 /* the following two functions are used to cycle
30  through all ringbuffers
31  */
32 gs_retval_t streamregistry_getactiveringbuf_reset();
33 struct ringbuf * streamregistry_getactiveringbuf();
34
35 /* the following two functions are used to cycle
36  through all msgids
37  */
38 gs_retval_t streamregistry_getactiveftaid_reset();
39 FTAID * streamregistry_getactiveftaid();
40
41 #endif