OLD | NEW |
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ | 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 /* ***** BEGIN LICENSE BLOCK ***** | 2 /* ***** BEGIN LICENSE BLOCK ***** |
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
4 * | 4 * |
5 * The contents of this file are subject to the Mozilla Public License Version | 5 * The contents of this file are subject to the Mozilla Public License Version |
6 * 1.1 (the "License"); you may not use this file except in compliance with | 6 * 1.1 (the "License"); you may not use this file except in compliance with |
7 * the License. You may obtain a copy of the License at | 7 * the License. You may obtain a copy of the License at |
8 * http://www.mozilla.org/MPL/ | 8 * http://www.mozilla.org/MPL/ |
9 * | 9 * |
10 * Software distributed under the License is distributed on an "AS IS" basis, | 10 * Software distributed under the License is distributed on an "AS IS" basis, |
(...skipping 1869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1880 /* Initialization related */ | 1880 /* Initialization related */ |
1881 extern void _PR_MD_EARLY_INIT(void); | 1881 extern void _PR_MD_EARLY_INIT(void); |
1882 #define _PR_MD_EARLY_INIT _MD_EARLY_INIT | 1882 #define _PR_MD_EARLY_INIT _MD_EARLY_INIT |
1883 | 1883 |
1884 extern void _PR_MD_INTERVAL_INIT(void); | 1884 extern void _PR_MD_INTERVAL_INIT(void); |
1885 #define _PR_MD_INTERVAL_INIT _MD_INTERVAL_INIT | 1885 #define _PR_MD_INTERVAL_INIT _MD_INTERVAL_INIT |
1886 | 1886 |
1887 NSPR_API(void) _PR_MD_FINAL_INIT(void); | 1887 NSPR_API(void) _PR_MD_FINAL_INIT(void); |
1888 #define _PR_MD_FINAL_INIT _MD_FINAL_INIT | 1888 #define _PR_MD_FINAL_INIT _MD_FINAL_INIT |
1889 | 1889 |
| 1890 extern void _PR_MD_EARLY_CLEANUP(void); |
| 1891 #define _PR_MD_EARLY_CLEANUP _MD_EARLY_CLEANUP |
| 1892 |
1890 /* Process control */ | 1893 /* Process control */ |
1891 | 1894 |
1892 extern PRProcess * _PR_MD_CREATE_PROCESS( | 1895 extern PRProcess * _PR_MD_CREATE_PROCESS( |
1893 const char *path, | 1896 const char *path, |
1894 char *const *argv, | 1897 char *const *argv, |
1895 char *const *envp, | 1898 char *const *envp, |
1896 const PRProcessAttr *attr); | 1899 const PRProcessAttr *attr); |
1897 #define _PR_MD_CREATE_PROCESS _MD_CREATE_PROCESS | 1900 #define _PR_MD_CREATE_PROCESS _MD_CREATE_PROCESS |
1898 | 1901 |
1899 extern PRStatus _PR_MD_DETACH_PROCESS(PRProcess *process); | 1902 extern PRStatus _PR_MD_DETACH_PROCESS(PRProcess *process); |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2129 | 2132 |
2130 extern ConnectListNode connectList[64]; | 2133 extern ConnectListNode connectList[64]; |
2131 | 2134 |
2132 extern PRUint32 connectCount; | 2135 extern PRUint32 connectCount; |
2133 | 2136 |
2134 #endif /* XP_BEOS */ | 2137 #endif /* XP_BEOS */ |
2135 | 2138 |
2136 PR_END_EXTERN_C | 2139 PR_END_EXTERN_C |
2137 | 2140 |
2138 #endif /* primpl_h___ */ | 2141 #endif /* primpl_h___ */ |
OLD | NEW |