AETransactionID was mistakenly defined as a short (it is a long). Fixed.

This commit is contained in:
Jack Jansen 2000-03-14 23:29:08 +00:00
parent 7ceab65468
commit def77e5346
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ AESendMode = Type("AESendMode", "l")
AESendPriority = Type("AESendPriority", "h")
AEInteractAllowed = Type("AEInteractAllowed", "b")
AEReturnID = Type("AEReturnID", "h")
AETransactionID = Type("AETransactionID", "h")
AETransactionID = Type("AETransactionID", "l")