summaryrefslogtreecommitdiff
path: root/ElmSharp/Interop
diff options
context:
space:
mode:
authorSeungkeun Lee <sngn.lee@samsung.com>2017-02-09 16:11:44 -0800
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>2017-02-09 16:11:44 -0800
commitdb4edadec35836fc29bdd1bdeaaae89ce6883e91 (patch)
tree25bde8828a9bb6143b78c29c27c90d18d5940ebe /ElmSharp/Interop
parentb177510673b0769a9177e9836bd89a23aee6b74d (diff)
parentc402bc695107cf08295b4123295bca09add65015 (diff)
downloadelm-sharp-db4edadec35836fc29bdd1bdeaaae89ce6883e91.tar.gz
elm-sharp-db4edadec35836fc29bdd1bdeaaae89ce6883e91.tar.bz2
elm-sharp-db4edadec35836fc29bdd1bdeaaae89ce6883e91.zip
Merge "Add Elementary.Get/SetScale()" into tizen
Diffstat (limited to 'ElmSharp/Interop')
-rw-r--r--ElmSharp/Interop/Interop.Elementary.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/ElmSharp/Interop/Interop.Elementary.cs b/ElmSharp/Interop/Interop.Elementary.cs
index 1474d14..aa17cc0 100644
--- a/ElmSharp/Interop/Interop.Elementary.cs
+++ b/ElmSharp/Interop/Interop.Elementary.cs
@@ -31,6 +31,12 @@ internal static partial class Interop
internal static extern IntPtr elm_config_accel_preference_set(string preference);
[DllImport(Libraries.Elementary)]
+ internal static extern void elm_config_scale_set(double scale);
+
+ [DllImport(Libraries.Elementary)]
+ internal static extern double elm_config_scale_get();
+
+ [DllImport(Libraries.Elementary)]
internal static extern string elm_config_profile_get();
[DllImport(Libraries.Elementary)]