ActionDescption.cs 334 B

12345678910111213141516171819
  1. using System.Runtime.InteropServices;
  2. namespace FORMULARMODULELib
  3. {
  4. [StructLayout(LayoutKind.Sequential, Pack = 4)]
  5. [Guid("713B0566-3CAE-4380-827F-D98EBB334141")]
  6. public struct ActionDescption
  7. {
  8. public int cookieDesc;
  9. [MarshalAs(UnmanagedType.Error)]
  10. public int hrRet;
  11. public int lErrDesc;
  12. public int nErrType;
  13. }
  14. }