Move variable definition to c file in test module 70/71570/2 accepted/tizen/common/20160526.150204 accepted/tizen/ivi/20160526.094402 accepted/tizen/mobile/20160526.094630 accepted/tizen/tv/20160526.094357 accepted/tizen/wearable/20160526.094434 submit/tizen/20160526.040057
authorHyihong Chae <hh.chae@samsung.com>
Thu, 26 May 2016 03:53:02 +0000 (12:53 +0900)
committerHyihong Chae <hh.chae@samsung.com>
Thu, 26 May 2016 03:55:38 +0000 (12:55 +0900)
Change-Id: I6aac82c7439c46926656a80a8471559c67cb63cf
Signed-off-by: HyiHong Chae <hh.chae@samsung.com>
packaging/capi-network-nfc.spec
test/include/nfc_common.h
test/src/nfc_common.c

index 3dddec5..729791d 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-network-nfc
 Summary:    A NFC library in Native API
-Version:    0.3.1
+Version:    0.3.2
 Release:    0
 Group:      Network & Connectivity/NFC
 License:    Apache-2.0
index 7090317..f592d1e 100644 (file)
@@ -144,7 +144,7 @@ typedef struct {
 }
 _nfc_context_s;
 
-_nfc_context_s gdbus_nfc_context;
+extern _nfc_context_s gdbus_nfc_context;
 
 pid_t nfc_common_get_focus_app_pid();
 char * nfc_common_get_bt_address_string(data_h data);
index 3a8a0af..3b47378 100755 (executable)
@@ -16,6 +16,8 @@
 
 #include "nfc_common.h"
 
+_nfc_context_s gdbus_nfc_context;
+
 /* LCOV_EXCL_START */
 pid_t nfc_common_get_focus_app_pid()
 {