-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do a better job of detecting when enums mess with sizes #1225
Conversation
{ | ||
"name": "ISC_REQ_FLAGS", | ||
"flags": true, | ||
"autoPopulate": { | ||
"filter": "ISC_REQ_", | ||
"filter": "ISC_REQ_(?!MESSAGES|DEFERRED_CRED_VALIDATION)", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool! I didn't know you could do that!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wasn't sure how to do it until I needed it. :)
case "ULONG64": | ||
case "INT64": | ||
case "UINT64": | ||
case "__int64": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
“__int64” cannot ever match, because of ToUpperInvariant. Filed as #1418.
Do a better job of detecting when enums change the sizes of parameters or fields
Fix up some issues the new logic detected
Fixes #1221