source:
branches/OKB/HeuristicLab.MainForm.WPF/NativeMethods.cs
@
6312
Last change on this file since 6312 was 4311, checked in by swagner, 14 years ago | |
---|---|
File size: 362 bytes |
Rev | Line | |
---|---|---|
[4311] | 1 | using System; |
2 | using System.Collections.Generic; | |
3 | using System.Linq; | |
4 | using System.Text; | |
5 | using System.Runtime.InteropServices; | |
6 | ||
7 | namespace HeuristicLab.MainForm.WPF { | |
8 | internal static class NativeMethods { | |
9 | ||
10 | [DllImport("gdi32.dll")] | |
11 | [return: MarshalAs(UnmanagedType.Bool)] | |
12 | internal static extern bool DeleteObject(IntPtr hObject); | |
13 | } | |
14 | } |
Note: See TracBrowser
for help on using the repository browser.