1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-18 14:21:41 +00:00
Files
godot/drivers/openssl/register_openssl.cpp
Juan Linietsky 4dc4e96c8a -OpenSSL Fixes
2014-05-01 09:53:37 -03:00

17 lines
269 B
C++

#include "register_openssl.h"
#include "stream_peer_openssl.h"
void register_openssl() {
ObjectTypeDB::register_type<StreamPeerOpenSSL>();
StreamPeerOpenSSL::initialize_ssl();
}
void unregister_openssl() {
StreamPeerOpenSSL::finalize_ssl();
}