blob: e1c554ca4a2e3229c563437780e44136a4ffc08f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef REGISTER_OPENSSL_H
#define REGISTER_OPENSSL_H
#ifdef OPENSSL_ENABLED
void register_openssl();
void unregister_openssl();
#endif
#endif // REGISTER_OPENSSL_H
|