Speedify SDK for Desktop  14.6.1
Basic Usage
#include <stdio.h>
int main( int argc, char** argv ) {
// Create an SDK object, passing in the port you are running the daemon on
snprintf(settings.name, SPEEDIFYSDK_MAX_APP_NAME_LENGTH, "%s", "MyAppName");
settings.port=1234;
// Get the current state synchronously
if ( res.isError )
printf( "error : %s\n", res.errorMessage);
else
printf( "state : %s\n", SpeedifySDK_State_toString( res.state ) );
// Cleanup the SDK object
}