let cfg: UnsafeMutablePointer <pjsua_config> = nil; pjsua_config_default(cfg); cfg.cb // Error: Value of type 'UnsafeMutablePointer<pjsua_config>' has no member 'cb' How to cast cfg to access it's fields ? I've tried to find answer in Apple's 'Interacting with C API' document but there is no info related to this issue.