[Release-17] Upgrade SBI to v17.x.0

This commit is contained in:
Sukchan Lee 2023-03-01 19:56:49 +09:00
parent 969c116e77
commit 4d44b1843e
1687 changed files with 121604 additions and 9310 deletions

View file

@ -1,7 +1,7 @@
/*
* user_location.h
*
*
* At least one of eutraLocation, nrLocation and n3gaLocation shall be present. Several of them may be present.
*/
#ifndef _OpenAPI_user_location_H_
@ -13,8 +13,10 @@
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "eutra_location.h"
#include "gera_location.h"
#include "n3ga_location.h"
#include "nr_location.h"
#include "utra_location.h"
#ifdef __cplusplus
extern "C" {
@ -25,12 +27,16 @@ typedef struct OpenAPI_user_location_s {
struct OpenAPI_eutra_location_s *eutra_location;
struct OpenAPI_nr_location_s *nr_location;
struct OpenAPI_n3ga_location_s *n3ga_location;
struct OpenAPI_utra_location_s *utra_location;
struct OpenAPI_gera_location_s *gera_location;
} OpenAPI_user_location_t;
OpenAPI_user_location_t *OpenAPI_user_location_create(
OpenAPI_eutra_location_t *eutra_location,
OpenAPI_nr_location_t *nr_location,
OpenAPI_n3ga_location_t *n3ga_location
OpenAPI_n3ga_location_t *n3ga_location,
OpenAPI_utra_location_t *utra_location,
OpenAPI_gera_location_t *gera_location
);
void OpenAPI_user_location_free(OpenAPI_user_location_t *user_location);
OpenAPI_user_location_t *OpenAPI_user_location_parseFromJSON(cJSON *user_locationJSON);