Deleted Added
full compact
dso.h (68651) dso.h (89837)
1/* dso.h */
2/* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL
3 * project 2000.
4 */
5/* ====================================================================
6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 180 unchanged lines hidden (view full) ---

189DSO_METHOD *DSO_METHOD_dl(void);
190
191/* If WIN32 is defined, use DLLs. If not, return NULL. */
192DSO_METHOD *DSO_METHOD_win32(void);
193
194/* If VMS is defined, use shared images. If not, return NULL. */
195DSO_METHOD *DSO_METHOD_vms(void);
196
1/* dso.h */
2/* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL
3 * project 2000.
4 */
5/* ====================================================================
6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 180 unchanged lines hidden (view full) ---

189DSO_METHOD *DSO_METHOD_dl(void);
190
191/* If WIN32 is defined, use DLLs. If not, return NULL. */
192DSO_METHOD *DSO_METHOD_win32(void);
193
194/* If VMS is defined, use shared images. If not, return NULL. */
195DSO_METHOD *DSO_METHOD_vms(void);
196
197void ERR_load_DSO_strings(void);
198
199/* BEGIN ERROR CODES */
200/* The following lines are auto generated by the script mkerr.pl. Any changes
201 * made after this point may be overwritten when the script is next run.
202 */
197/* BEGIN ERROR CODES */
198/* The following lines are auto generated by the script mkerr.pl. Any changes
199 * made after this point may be overwritten when the script is next run.
200 */
201void ERR_load_DSO_strings(void);
203
204/* Error codes for the DSO functions. */
205
206/* Function codes. */
207#define DSO_F_DLFCN_BIND_FUNC 100
208#define DSO_F_DLFCN_BIND_VAR 101
209#define DSO_F_DLFCN_CTRL 102
210#define DSO_F_DLFCN_LOAD 103

--- 31 unchanged lines hidden (view full) ---

242#define DSO_R_UNKNOWN_COMMAND 106
243#define DSO_R_UNLOAD_FAILED 107
244#define DSO_R_UNSUPPORTED 108
245
246#ifdef __cplusplus
247}
248#endif
249#endif
202
203/* Error codes for the DSO functions. */
204
205/* Function codes. */
206#define DSO_F_DLFCN_BIND_FUNC 100
207#define DSO_F_DLFCN_BIND_VAR 101
208#define DSO_F_DLFCN_CTRL 102
209#define DSO_F_DLFCN_LOAD 103

--- 31 unchanged lines hidden (view full) ---

241#define DSO_R_UNKNOWN_COMMAND 106
242#define DSO_R_UNLOAD_FAILED 107
243#define DSO_R_UNSUPPORTED 108
244
245#ifdef __cplusplus
246}
247#endif
248#endif
250