Line data Source code
1 : #ifndef AWS_COMMON_PACKAGE_H
2 : #define AWS_COMMON_PACKAGE_H
3 :
4 : /**
5 : * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
6 : * SPDX-License-Identifier: Apache-2.0.
7 : */
8 :
9 : /*
10 : * Preliminary cap on the number of possible aws-c-libraries participating in shared enum ranges for
11 : * errors, log subjects, and other cross-library enums. Expandable as needed
12 : */
13 0 : #define AWS_PACKAGE_SLOTS 16
14 :
15 : /*
16 : * Each aws-c-* and aws-crt-* library has a unique package id starting from zero. These are used to macro-calculate
17 : * correct ranges for the cross-library enumerations.
18 : */
19 : #define AWS_C_COMMON_PACKAGE_ID 0
20 :
21 : #endif /* AWS_COMMON_PACKAGE_H */
|