A
Antonio C
BOOL SipGetInfo(SIPINFO* pSipInfo);
typedef struct{
DWORD cbSize;
DWORD fdwFlags;
RECT rcVisibleDesktop;
RECT rcSipRect;
DWORD dwImDataSize;
VOID* pvImData;
} SIPINFO;
I've tried int this way but don't work:
<System.Runtime.InteropServices.DllImport("coredll.dll")>
Private Shared Function SipGetInfo(ByVal si As SIPINFO) As
Boolean
End Function
Private Structure SIPINFO
Public cbSize As Int32
Public fdwFlags As Int32
Public rcVisibleDesktop As RECT
Public rcSipRect As RECT
Public dwImDataSize As Int32
Public pvImData As Int32
End Structure
Private Structure RECT
Public left As Int32
Public top As Int32
Public right As Int32
Public Bottom As Int32
End Structure
Can anyone help me?
typedef struct{
DWORD cbSize;
DWORD fdwFlags;
RECT rcVisibleDesktop;
RECT rcSipRect;
DWORD dwImDataSize;
VOID* pvImData;
} SIPINFO;
I've tried int this way but don't work:
<System.Runtime.InteropServices.DllImport("coredll.dll")>
Private Shared Function SipGetInfo(ByVal si As SIPINFO) As
Boolean
End Function
Private Structure SIPINFO
Public cbSize As Int32
Public fdwFlags As Int32
Public rcVisibleDesktop As RECT
Public rcSipRect As RECT
Public dwImDataSize As Int32
Public pvImData As Int32
End Structure
Private Structure RECT
Public left As Int32
Public top As Int32
Public right As Int32
Public Bottom As Int32
End Structure
Can anyone help me?