OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 #ifndef BASE_H | 5 #ifndef BASE_H |
6 #define BASE_H | 6 #define BASE_H |
7 | 7 |
8 #ifdef DEBUG | |
9 static const char BASE_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
10 #endif /* DEBUG */ | |
11 | |
12 /* | 8 /* |
13 * base.h | 9 * base.h |
14 * | 10 * |
15 * This header file contains basic prototypes and preprocessor | 11 * This header file contains basic prototypes and preprocessor |
16 * definitions used throughout nss but not available publicly. | 12 * definitions used throughout nss but not available publicly. |
17 */ | 13 */ |
18 | 14 |
19 #ifndef BASET_H | 15 #ifndef BASET_H |
20 #include "baset.h" | 16 #include "baset.h" |
21 #endif /* BASET_H */ | 17 #endif /* BASET_H */ |
(...skipping 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1389 PRStatus *statusOpt | 1385 PRStatus *statusOpt |
1390 ); | 1386 ); |
1391 | 1387 |
1392 extern const NSSError NSS_ERROR_INVALID_POINTER; | 1388 extern const NSSError NSS_ERROR_INVALID_POINTER; |
1393 | 1389 |
1394 #define nsslibc_offsetof(str, memb) ((PRPtrdiff)(&(((str *)0)->memb))) | 1390 #define nsslibc_offsetof(str, memb) ((PRPtrdiff)(&(((str *)0)->memb))) |
1395 | 1391 |
1396 PR_END_EXTERN_C | 1392 PR_END_EXTERN_C |
1397 | 1393 |
1398 #endif /* BASE_H */ | 1394 #endif /* BASE_H */ |
OLD | NEW |