Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.MainForm.WPF/NativeMethods.cs @ 4311

Last change on this file since 4311 was 4311, checked in by swagner, 14 years ago

Integrated OKB clients for HL 3.3 (#1166)

File size: 362 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Runtime.InteropServices;
6
7namespace 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.