I have a C library with following struct
typedef struct Client_
{
/*! Display Name for Guest only */
char displayName[USERID_SIZE];
/*! Conference PIN if needed */
char pin[PIN_SIZE];
} Client;
From swift, I have to assign the members with string.
var client = Client();
let guestVName = "Swift user";
let guestVRoomPin = "";
How to do this? Please help.