dcrud  0.0.0
Distributed data and services
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
limits.h
Go to the documentation of this file.
1 #pragma once
2 #ifdef __cplusplus
3 extern "C" {
4 #endif
5 
6 #ifdef STATIC_ALLOCATION
7 
8 /*-- List -----------------------------------------------*/
9 
10 #define collList_MAX_COUNT 12
11 #define collList_ITEM_MAX_COUNT 100
12 
13 extern unsigned int collLimitsListCountMax;
14 extern unsigned int collLimitsListItemCountMax;
15 
16 /*-- Set ------------------------------------------------*/
17 
18 #define collSet_MAX_COUNT 12
19 #define collSet_ITEM_MAX_COUNT 100
20 
21 extern unsigned int collLimitsSetCountMax;
22 extern unsigned int collLimitsSetItemCountMax;
23 
24 /*-- Map ------------------------------------------------*/
25 
26 #define collMap_MAX_COUNT 12
27 #define collMap_ITEM_MAX_COUNT 100
28 
29 extern unsigned int collLimitsMapCountMax;
30 extern unsigned int collLimitsMapItemCountMax;
31 
32 #endif
33 
34 #ifdef __cplusplus
35 }
36 #endif