23 lines
324 B
C
23 lines
324 B
C
|
/**
|
||
|
* Unsecure API functions
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
/**
|
||
|
* Get secure origin
|
||
|
*
|
||
|
* @returns The URL to the secure origin or NULL in case of failure. Value must be
|
||
|
* released by caller.
|
||
|
*/
|
||
|
char *unsecure_api_get_secure_origin();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|