dcrud  0.0.0
Distributed data and services
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
ForeachFunction.h
Go to the documentation of this file.
1 #pragma once
2 #ifdef __cplusplus
3 extern "C" {
4 #endif
5 
6 typedef void * collForeachResult;
7 
8 typedef struct collForeach_s {
9 
10  unsigned int index;
11  void * item;
12  void * user;
13  collForeachResult retVal;
14 
15 } collForeach;
16 
17 typedef bool( * collForeachFunction )( collForeach * context );
18 
19 #ifdef __cplusplus
20 }
21 #endif
unsigned int index
collForeachResult retVal
bool(* collForeachFunction)(collForeach *context)
void * collForeachResult
int bool
Definition: types.h:11
struct collForeach_s collForeach