Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-352.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d097e831d8e8a9abcf1711ae319712b599072231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Runtime.InteropServices;

public struct CONNECTDATA
{
	[MarshalAs (10)]
	public object pUnk;
	[MarshalAs (UnmanagedType.BStr)]
	public int dwCookie;
}

public class C
{
    public static void Main () {}
}