f68d06a625d2437ae2d42b5d829fac340c72df13
[platform/core/csapi/tizenfx.git] / src / Tizen.System.Session / Session / SessionStructs.cs
1 /*
2  * Copyright (c) 2023 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16  
17 using System;
18 using System.ComponentModel;
19 using System.Runtime.InteropServices;
20 using System.Text;
21 using Tizen.Internals;
22
23 namespace Tizen.System
24 {
25     [NativeStruct("subsession_event_info", Include="sessiond.h", PkgConfig="libsessiond")]
26     [StructLayout(LayoutKind.Explicit)]
27     internal struct SubsessionEventInfoNative
28     {
29         [FieldOffset(0)]
30         public SessionEventType eventType;
31         [FieldOffset(4)]
32         public int sessionUID;
33
34         [FieldOffset(8)]
35         public IntPtr AddUserPtr;
36
37         [FieldOffset(8)]
38         public IntPtr RemoveUserPtr;
39
40         [FieldOffset(8)]
41         public Int64 switchID;
42         [FieldOffset(16)]
43         public IntPtr PrevUserPtr;
44         
45         [FieldOffset(36)]
46         public IntPtr NextUserPtr;
47     }
48 }