+++ /dev/null
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 14
-VisualStudioVersion = 14.0.24720.0
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tizen.Applications", "Tizen.Applications\Tizen.Applications.csproj", "{663C5A3D-E631-4987-AEE7-F498C56A40FC}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tizen", "..\tizen\Tizen\Tizen.csproj", "{7659CA59-410D-41A1-9841-586E88BC78C9}"
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tizen.Internals", "..\tizen\Tizen.Internals\Tizen.Internals.csproj", "{B9AA1CB2-F72D-4A30-A33B-A20C850A38A0}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {663C5A3D-E631-4987-AEE7-F498C56A40FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {663C5A3D-E631-4987-AEE7-F498C56A40FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {663C5A3D-E631-4987-AEE7-F498C56A40FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {663C5A3D-E631-4987-AEE7-F498C56A40FC}.Release|Any CPU.Build.0 = Release|Any CPU
- {7659CA59-410D-41A1-9841-586E88BC78C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {7659CA59-410D-41A1-9841-586E88BC78C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {7659CA59-410D-41A1-9841-586E88BC78C9}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {7659CA59-410D-41A1-9841-586E88BC78C9}.Release|Any CPU.Build.0 = Release|Any CPU
- {B9AA1CB2-F72D-4A30-A33B-A20C850A38A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {B9AA1CB2-F72D-4A30-A33B-A20C850A38A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {B9AA1CB2-F72D-4A30-A33B-A20C850A38A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {B9AA1CB2-F72D-4A30-A33B-A20C850A38A0}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
{
internal static partial class AppCommon
{
- [DllImport(Libraries.AppCommon, EntryPoint = "app_get_id", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(Libraries.AppCommon, EntryPoint = "app_get_id")]
internal static extern ErrorCode AppGetId(out string appId);
- [DllImport(Libraries.AppCommon, EntryPoint = "app_get_name", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(Libraries.AppCommon, EntryPoint = "app_get_name")]
internal static extern ErrorCode AppGetName(out string name);
- [DllImport(Libraries.AppCommon, EntryPoint = "app_get_resource_path", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(Libraries.AppCommon, EntryPoint = "app_get_resource_path")]
internal static extern string AppGetResourcePath();
- [DllImport(Libraries.AppCommon, EntryPoint = "app_get_data_path", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(Libraries.AppCommon, EntryPoint = "app_get_data_path")]
internal static extern string AppGetDataPath();
- [DllImport(Libraries.AppCommon, EntryPoint = "app_get_cache_path", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(Libraries.AppCommon, EntryPoint = "app_get_cache_path")]
internal static extern string AppGetCachePath();
- [DllImport(Libraries.AppCommon, EntryPoint = "app_get_shared_data_path, CallingConvention = CallingConvention.Cdecl")]
+ [DllImport(Libraries.AppCommon, EntryPoint = "app_get_shared_data_path")]
internal static extern string AppGetSharedDataPath();
- [DllImport(Libraries.AppCommon, EntryPoint = "app_get_shared_resource_path", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(Libraries.AppCommon, EntryPoint = "app_get_shared_resource_path")]
internal static extern string AppGetSharedResourcePath();
- [DllImport(Libraries.AppCommon, EntryPoint = "app_get_shared_trusted_path", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(Libraries.AppCommon, EntryPoint = "app_get_shared_trusted_path")]
internal static extern string AppGetSharedTrustedPath();
- [DllImport(Libraries.AppCommon, EntryPoint = "app_get_tep_resource_path", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(Libraries.AppCommon, EntryPoint = "app_get_tep_resource_path")]
internal static extern string AppGetTepResourcePath();
- [DllImport(Libraries.AppCommon, EntryPoint = "app_get_external_cache_path", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(Libraries.AppCommon, EntryPoint = "app_get_external_cache_path")]
internal static extern string AppGetExternalCachePath();
- [DllImport(Libraries.AppCommon, EntryPoint = "app_get_external_data_path", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(Libraries.AppCommon, EntryPoint = "app_get_external_data_path")]
internal static extern string AppGetExternalDataPath();
- [DllImport(Libraries.AppCommon, EntryPoint = "app_get_external_shared_data_path", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(Libraries.AppCommon, EntryPoint = "app_get_external_shared_data_path")]
internal static extern string AppGetExternalSharedDataPath();
- [DllImport(Libraries.AppCommon, EntryPoint = "app_get_version", CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(Libraries.AppCommon, EntryPoint = "app_get_version")]
internal static extern ErrorCode AppGetVersion(out string version);
}
}