[NUI.WindowSystem] introduce the taskbar service feature
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.WindowSystem / src / internal / Interop / Interop.TaskbarService.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4
5 namespace Tizen.NUI.WindowSystem.Shell
6 {
7     internal static partial class Interop
8     {
9         internal static partial class TaskbarService
10         {
11             const string lib = "libtzsh_taskbar_service.so.0";
12
13             [global::System.Runtime.InteropServices.DllImport(lib, EntryPoint = "tzsh_taskbar_service_create")]
14             internal static extern IntPtr Create(IntPtr tzsh, IntPtr win);
15
16             [global::System.Runtime.InteropServices.DllImport(lib, EntryPoint = "tzsh_taskbar_service_destroy")]
17             internal static extern int Destroy(IntPtr taskbarService);
18
19             [global::System.Runtime.InteropServices.DllImport(lib, EntryPoint = "tzsh_taskbar_service_place_type_set")]
20             internal static extern int SetPlaceType(IntPtr taskbarService, int placeType);
21
22             [global::System.Runtime.InteropServices.DllImport(lib, EntryPoint = "tzsh_taskbar_service_size_set")]
23             internal static extern int SetSize(IntPtr taskbarService, uint width, uint height);
24         }
25     }
26 }