summaryrefslogtreecommitdiff
path: root/ElmSharp/Interop/Interop.Eina.cs
blob: 107d4c31ee88b455f609fc7ed466eb66808cb8cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2016 by Samsung Electronics, Inc.,
//
// This software is the confidential and proprietary information
// of Samsung Electronics, Inc. ("Confidential Information"). You
// shall not disclose such Confidential Information and shall use
// it only in accordance with the terms of the license agreement
// you entered into with Samsung.

using System;
using System.Runtime.InteropServices;

internal static partial class Interop
{
    internal static partial class Eina
    {
        [DllImport(Libraries.Eina)]
        internal static extern bool eina_main_loop_is();
    }
}