24 lines
570 B
C#
24 lines
570 B
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Specialized;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Novell.CASA.DataEngines.KWallet
|
|
{
|
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
|
|
public class EnumSecretList
|
|
{
|
|
|
|
public IntPtr walletName;
|
|
public IntPtr folderName;
|
|
public int entryType;
|
|
public IntPtr secretVal;
|
|
public IntPtr next;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|