diff options
author | Jaehyun Kim <jeik01.kim@samsung.com> | 2024-09-19 07:19:37 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@review> | 2024-09-19 07:19:37 +0000 |
commit | ec6d9ab9161c7b9d3201fd0c9a5b02cd85928456 (patch) | |
tree | d3d1026c91cb7e2e1850a69d9e74a961515d1c34 /src | |
parent | 717e71314c62a8a4b916d7987cb8c13a312100e4 (diff) | |
parent | 4e358f4d3c7ada2f53358916478c7fc6064e7014 (diff) | |
download | wifi-aware-ec6d9ab9161c7b9d3201fd0c9a5b02cd85928456.tar.gz wifi-aware-ec6d9ab9161c7b9d3201fd0c9a5b02cd85928456.tar.bz2 wifi-aware-ec6d9ab9161c7b9d3201fd0c9a5b02cd85928456.zip |
Merge "Update files according to the Native API guidelines" into tizenaccepted/tizen/unified/x/20240920.053144accepted/tizen/unified/toolchain/20241004.101501accepted/tizen/unified/dev/20240920.060423accepted/tizen/unified/20240919.163747accepted/tizen_unified_dev
Diffstat (limited to 'src')
-rw-r--r-- | src/wifi-aware.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wifi-aware.c b/src/wifi-aware.c index 8c26d61..af5758b 100644 --- a/src/wifi-aware.c +++ b/src/wifi-aware.c @@ -28,7 +28,7 @@ #include "wifi-aware-utils.h" -API int wifi_aware_initialize() +API int wifi_aware_initialize(void) { int ret = WIFI_AWARE_ERROR_NONE; @@ -43,7 +43,7 @@ API int wifi_aware_initialize() return WIFI_AWARE_ERROR_NONE; } -API int wifi_aware_deinitialize() +API int wifi_aware_deinitialize(void) { int ret = WIFI_AWARE_ERROR_NONE; @@ -76,7 +76,7 @@ API int wifi_aware_enable(wifi_aware_enabled_cb callback, void *user_data) return WIFI_AWARE_ERROR_NONE; } -API int wifi_aware_disable() +API int wifi_aware_disable(void) { int ret = WIFI_AWARE_ERROR_NONE; |