arch: DB schema Changes (#796)

- New function : NSSF
- New feature : SMF selection
This commit is contained in:
Sukchan Lee 2021-03-08 21:25:09 +09:00
parent c6bfbed922
commit 9af4268bab
691 changed files with 40727 additions and 18985 deletions

View file

@ -17,16 +17,11 @@
extern "C" {
#endif
typedef struct OpenAPI_ue_auth_s OpenAPI_ue_auth_t;
typedef struct OpenAPI_ue_auth_s {
} OpenAPI_ue_auth_t;
typedef enum { OpenAPI_ue_auth_NULL = 0, OpenAPI_ue_auth_AUTHORIZED, OpenAPI_ue_auth_NOT_AUTHORIZED } OpenAPI_ue_auth_e;
OpenAPI_ue_auth_t *OpenAPI_ue_auth_create(
);
void OpenAPI_ue_auth_free(OpenAPI_ue_auth_t *ue_auth);
OpenAPI_ue_auth_t *OpenAPI_ue_auth_parseFromJSON(cJSON *ue_authJSON);
cJSON *OpenAPI_ue_auth_convertToJSON(OpenAPI_ue_auth_t *ue_auth);
OpenAPI_ue_auth_t *OpenAPI_ue_auth_copy(OpenAPI_ue_auth_t *dst, OpenAPI_ue_auth_t *src);
char* OpenAPI_ue_auth_ToString(OpenAPI_ue_auth_e ue_auth);
OpenAPI_ue_auth_e OpenAPI_ue_auth_FromString(char* ue_auth);
#ifdef __cplusplus
}