DLLImport and unmanaged function Polygon from Win32API

  • Thread starter Thread starter Pawel
  • Start date Start date
P

Pawel

Hi,

I will import function Polygon from GDI Win32API, how should i declare this
function in C# using DllImport clause.

Thanks for any sugesstions,

Regards,

Pawel
 
I will import function Polygon from GDI Win32API, how should i declare this
function in C# using DllImport clause.

Something like

[DllImport("gdi32.dll")]
static extern bool Polygon(HandleRef hdc, POINT[] lpPoints, int
nCount);



Mattias
 
Back
Top