internal static extern int GetEapSubjectMatch(SafeWiFiConfigHandle config, out IntPtr subjectMatch);
internal static extern int SetEapSubjectMatch(SafeWiFiConfigHandle config, string subjectMatch);
internal static extern int GetEapType(SafeWiFiConfigHandle config, out int eapType);
internal static extern int SetEapAuthType(SafeWiFiConfigHandle config, int eapAuthType);
internal static extern int GetEapIdentity(SafeWiFiConfigHandle config, out IntPtr identify);
internal static extern int SetEapIdentity(SafeWiFiConfigHandle config, string identify);
internal static extern int SetEapClientCertFile(SafeWiFiConfigHandle config, string privateKey, string clientCert);
internal static extern int GetEapClientCertFile(SafeWiFiConfigHandle config, out IntPtr clientCert);
internal static extern int SetEapCaCertFile(SafeWiFiConfigHandle config, string caCert);
internal static extern int SetEapAnonymousIdentity(SafeWiFiConfigHandle config, string anonymousIdentify);
internal static extern int GetEapAnonymousIdentity(SafeWiFiConfigHandle config, out IntPtr anonymousIdentify);