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 DEVM_H | 5 #ifndef DEVM_H |
6 #define DEVM_H | 6 #define DEVM_H |
7 | 7 |
8 #ifdef DEBUG | |
9 static const char DEVM_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
10 #endif /* DEBUG */ | |
11 | |
12 #ifndef BASE_H | 8 #ifndef BASE_H |
13 #include "base.h" | 9 #include "base.h" |
14 #endif /* BASE_H */ | 10 #endif /* BASE_H */ |
15 | 11 |
16 #ifndef DEV_H | 12 #ifndef DEV_H |
17 #include "dev.h" | 13 #include "dev.h" |
18 #endif /* DEV_H */ | 14 #endif /* DEV_H */ |
19 | 15 |
20 #ifndef DEVTM_H | 16 #ifndef DEVTM_H |
21 #include "devtm.h" | 17 #include "devtm.h" |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 NSS_EXTERN PRUint32 | 196 NSS_EXTERN PRUint32 |
201 nssPKCS11String_Length | 197 nssPKCS11String_Length |
202 ( | 198 ( |
203 CK_CHAR *pkcs11str, | 199 CK_CHAR *pkcs11str, |
204 PRUint32 bufLen | 200 PRUint32 bufLen |
205 ); | 201 ); |
206 | 202 |
207 PR_END_EXTERN_C | 203 PR_END_EXTERN_C |
208 | 204 |
209 #endif /* DEV_H */ | 205 #endif /* DEV_H */ |
OLD | NEW |