伙计们,我遇到了不平衡的堆栈问题,请参见下文
C API 中的 DNParse 函数:
STATUS LNPUBLIC DNParse(DWORD Flags, const char far *TemplateName,
const char far *InName, DN_COMPONENTS far *Comp,
WORD CompSize);
using FORMULAHANDLE = System.UInt32;
using NullHandle = System.Nullable;
using Status = System.UInt16;
using DBHandle = System.IntPtr;
using DHANDLE = System.IntPtr;
using NoteID = System.UInt32;
using ColHandle = System.UInt32;
using WORD = System.UInt32;
using DWORD = System.UInt32;
using NoteHandle = System.IntPtr;
using FontID = System.UInt32;
public static unsafe string GetCurrentUserCommonName()
{
string str = "";
Status sts = 0;
DWORD xDWORD = 0;
dname.DN_COMPONENTS DNComp = new dname.DN_COMPONENTS();
StringBuilder szServer = new StringBuilder(0x400, 0x400);
StringBuilder InName = new StringBuilder(0x400, 0x400);
Initialize();
if (m_isInitialized)
{
sts = nnotesDLL.SECKFMGetUserName(szServer);
sts = nnotesDLL.DNParse(xDWORD, null, szServer,
DNComp, (Int16)Marshal.SizeOf(DNComp));
// return CanonName.ToString();
}
return str;
}
和 C# 版本:
[DllImport("nnotes.dll")]
public unsafe static extern Status DNParse(DWORD Flags, string TemplateName,
StringBuilder szServer,
dname.DN_COMPONENTS DNComp,
short CompSize);
DN_COMPONENTS STRUCTURE
public struct DN_COMPONENTS
{
....
}