Design Introduction “Air” Styles Mobile Design Principles Styles UX Overview Design Patterns UI Components for Tizen App Design 2.3 TV Design Principles Styles UX Overview Patterns UI Components Wearable Development Tizen Studio Overview Download Tizen Studio Deprecation Notice Tizen Extensions for Visual Studio Family IoT extension SDK Docs Blog Blog Announcing the Tizen Studio 3.7 Release Announcing the Tizen Studio 3.1 Release Community Forums General Support Tizen .NET Web Application Development Native Application Development SDK & IDE Design Introduction “Air” Styles Mobile Design Principles Styles UX Overview Design Patterns UI Components for Tizen App Design 2.3 TV Design Principles Styles UX Overview Patterns UI Components Wearable Development Tizen Studio Overview Download Tizen Studio Deprecation Notice Tizen Extensions for Visual Studio Family IoT extension SDK Docs Blog Blog Announcing the Tizen Studio 3.7 Release Announcing the Tizen Studio 3.1 Release Community Forums General Support Tizen .NET Web Application Development Native Application Development SDK & IDE
undecelared identifiers ? what is missing ?
The below code is not compiling. I get – use of undeclared identifier ‘APP_CONTROL_OPERATION_SETTING’.
Now where the hell is this deceleration in ? Which include am missing ?
#include <app_control.h>
static int
launch_setting(void)//might no be required
{
int ret = 0;
app_control_h service = NULL;
app_control_create(&service);
if (service == NULL)
{
dlog_print(DLOG_INFO, LOG_TAG, “Failed to create app control handler”);
return -1;
}
app_control_set_operation(service, APP_CONTROL_OPERATION_SETTING);
ret = app_control_send_launch_request(service, NULL, NULL);
app_control_destroy(service);
if (ret == APP_CONTROL_ERROR_NONE)
{
dlog_print(DLOG_INFO, LOG_TAG, “Succeeded to launch settings!\n”);
return 0;
}
else
{
dlog_print(DLOG_INFO, LOG_TAG, “Failed to launch settings!\n”);
return -1;
}
return 0;
}
Aashish
BY
16 Apr 2025
Tizen Studio
BY
04 Nov 2024
Tizen Studio
BY
02 Apr 2024
Tizen Studio