Functions | |
ARBB_VM_EXPORT arbb_error_t | arbb_if (arbb_function_t function, arbb_variable_t condition, arbb_error_details_t *details) |
Begins an if statement, the body of which is executed if the provided condition is met. | |
ARBB_VM_EXPORT arbb_error_t | arbb_else (arbb_function_t function, arbb_error_details_t *details) |
Adds an else part to the current if statement. | |
ARBB_VM_EXPORT arbb_error_t | arbb_end_if (arbb_function_t function, arbb_error_details_t *details) |
Ends the current if statement. |
ARBB_VM_EXPORT arbb_error_t arbb_if | ( | arbb_function_t | function, | |
arbb_variable_t | condition, | |||
arbb_error_details_t * | details | |||
) |
Begins an if statement, the body of which is executed if the provided condition is met.
function
is a null object.condition
is a null object.condition
is not a scalar of type arbb_boolean.function
is not currently being defined. ARBB_VM_EXPORT arbb_error_t arbb_else | ( | arbb_function_t | function, | |
arbb_error_details_t * | details | |||
) |
Adds an else part to the current if statement.
function
is a null object.ARBB_VM_EXPORT arbb_error_t arbb_end_if | ( | arbb_function_t | function, | |
arbb_error_details_t * | details | |||
) |
Ends the current if statement.
function
is a null object.Copyright © 2010, Intel Corporation. All rights reserved.