Rename Client struct to ClientImp for C++

This commit is contained in:
2023-09-08 14:28:06 -05:00
parent f7bda10f7d
commit c4e3a9ceea
6 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
#pragma once
// Public stuff
struct Client;
typedef struct Client* Client;
struct ClientImp;
typedef struct ClientImp* Client;
#include "message.h"
#include "chassis.h"