forked from NeoforceControls/Neoforce-Mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NativeMethods.cs
69 lines (57 loc) · 2.98 KB
/
NativeMethods.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
////////////////////////////////////////////////////////////////
// //
// Neoforce Controls //
// //
////////////////////////////////////////////////////////////////
// //
// File: NativeMethods.cs //
// //
// Version: 0.7 //
// //
// Date: 11/09/2010 //
// //
// Author: Tom Shane //
// //
////////////////////////////////////////////////////////////////
// //
// Copyright (c) by Tom Shane //
// //
////////////////////////////////////////////////////////////////
#region //// Using /////////////
////////////////////////////////////////////////////////////////////////////
using System;
using System.Runtime.InteropServices;
////////////////////////////////////////////////////////////////////////////
#endregion
namespace TomShane.Neoforce.Controls
{
[Obsolete("Native methods should be avoided at all times")]
internal static class NativeMethods
{
#region //// Methods ///////////
////////////////////////////////////////////////////////////////////////////
[Obsolete]
[DllImport("User32.dll", CharSet = CharSet.Unicode)]
internal static extern IntPtr LoadImage(IntPtr instance, string fileName, uint type, int width, int height, uint load);
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
[Obsolete]
[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool DestroyCursor(IntPtr cursor);
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
[Obsolete]
internal static IntPtr LoadCursor(string fileName)
{
return LoadImage(IntPtr.Zero, fileName, 2, 0, 0, 0x0010);
}
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
[Obsolete]
[DllImport("user32.dll")]
internal static extern short GetKeyState(int key);
////////////////////////////////////////////////////////////////////////////
#endregion
}
}