12345678910111213141516171819 |
- using System.Runtime.InteropServices;
- namespace FORMULARMODULELib
- {
- [StructLayout(LayoutKind.Sequential, Pack = 4)]
- [Guid("713B0566-3CAE-4380-827F-D98EBB334141")]
- public struct ActionDescption
- {
- public int cookieDesc;
- [MarshalAs(UnmanagedType.Error)]
- public int hrRet;
- public int lErrDesc;
- public int nErrType;
- }
- }
|