#pragma once typedef struct AuthKey { char* access_token; } AuthKey; typedef struct VideoToken { char* video_token; } VideoToken; void auth_bootstrap(AuthKey key);