C# でコンパイル エラーが発生しました
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
using System.Security.Principal;
using System.Security.Permissions;
using System.Runtime.ConstrainedExecution;
using System.Runtime.InteropServices;
using Microsoft.Win32.SafeHandles;
[DllImport("advapi32.dll", SetLastError = true,CharSet = CharSet.Unicode)]
public static extern bool ***LogonUser***(string lpszUsername, string lpszDomain, string lpszPassword,
int dwLogonType, int dwLogonProvider, out ***SafeTokenHandle*** phToken);
In the word at the * sign (LogonUser and SafeTokenHandle). 型が不明なため、C# コンパイラがコンパイルできません。Visual Studio 2012、windows 64、フレームワーク 4.0 で開発しています。
助けてください。