pupes-message/client/global_vars.h
2025-05-03 16:23:19 +02:00

9 lines
243 B
C++

#include "types.h"
#include <openssl/ssl.h>
#ifndef PM_GLOBAL_VARS_H
#define PM_GLOBAL_VARS_H
extern void (*receive_callback)(std::vector<user>, std::string);
extern SSL_CTX *ctx_global;
extern SSL *ssl_global;
extern int sockfd_global;
#endif