diff options
author | kyuho.jo <kyuho.jo@samsung.com> | 2017-05-25 19:28:14 +0900 |
---|---|---|
committer | ChulSeung Kim <charles0.kim@samsung.com> | 2017-06-08 18:34:56 +0900 |
commit | 262f03fb828c54f6d2c70bc4c0bfb1943d1f9499 (patch) | |
tree | 9cea8af14aefd57796ea9d5b9edb059475c280d5 | |
parent | a2bf6b7e80bde3f17e7a70273cb3136d7fecadbf (diff) | |
download | home-262f03fb828c54f6d2c70bc4c0bfb1943d1f9499.tar.gz home-262f03fb828c54f6d2c70bc4c0bfb1943d1f9499.tar.bz2 home-262f03fb828c54f6d2c70bc4c0bfb1943d1f9499.zip |
Fixed the problem caused by missed symbol name
Change-Id: Ie95848a4ce48d44260568fc748286caca9975a38
Signed-off-by: kyuho.jo <kyuho.jo@samsung.com>
-rw-r--r-- | TVHome/TVHome.TizenTV/Sniper.cs | 6 | ||||
-rw-r--r-- | TVHome/TVHome.TizenTV/SniperInterOp.cs | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/TVHome/TVHome.TizenTV/Sniper.cs b/TVHome/TVHome.TizenTV/Sniper.cs index 22c55f0..461b623 100644 --- a/TVHome/TVHome.TizenTV/Sniper.cs +++ b/TVHome/TVHome.TizenTV/Sniper.cs @@ -263,7 +263,7 @@ namespace CoreApp try { - InterOp.Sniper_init(nativeWindow, callbacks, storagePath, imageWidth, imageHeight); + InterOp.sniper_init(nativeWindow, callbacks, storagePath, imageWidth, imageHeight); } catch (DllNotFoundException e) { @@ -280,7 +280,7 @@ namespace CoreApp { try { - InterOp.Sniper_fini(); + InterOp.sniper_fini(); } catch (DllNotFoundException e) { @@ -298,7 +298,7 @@ namespace CoreApp { try { - InterOp.Sniper_request_update(instanceId); + InterOp.sniper_request_update(instanceId); } catch (DllNotFoundException e) { diff --git a/TVHome/TVHome.TizenTV/SniperInterOp.cs b/TVHome/TVHome.TizenTV/SniperInterOp.cs index 1f88d25..12712b9 100644 --- a/TVHome/TVHome.TizenTV/SniperInterOp.cs +++ b/TVHome/TVHome.TizenTV/SniperInterOp.cs @@ -25,13 +25,13 @@ namespace CoreApp } [DllImport("sniper", CharSet = CharSet.Ansi)] - internal static extern int Sniper_init(IntPtr win, SniperCallback callbacks, string path, int w, int h); + internal static extern int sniper_init(IntPtr win, SniperCallback callbacks, string path, int w, int h); [DllImport("sniper", CharSet = CharSet.Ansi)] - internal static extern int Sniper_request_update(string instanceId); + internal static extern int sniper_request_update(string instanceId); [DllImport("sniper", CharSet = CharSet.Ansi)] - internal static extern int Sniper_fini(); + internal static extern int sniper_fini(); } } |