Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. struct CTMDeviceError {
  2. struct CTMDeviceInfo sDeviceInfo;
  3. int32_t iResultCode;
  4. int32_t iExtendedResultCode;
  5. int32_t * piDenomination;
  6. int32_t * piChangeDue;
  7. };
  8.  
  9. [StructLayout(LayoutKind.Sequential)]
  10. public struct CTMDeviceError
  11. {
  12. public CTMDeviceInfo deviceInfo;
  13.  
  14. [MarshalAs(UnmanagedType.I4)]
  15. public Int32 resultCode;
  16.  
  17. [MarshalAs(UnmanagedType.I4)]
  18. public Int32 extendedResultCode;
  19.  
  20. public ??? denomination;
  21.  
  22. public ??? changeDue;
  23. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement