mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Changed all (hopefully) uses of unsigned 16 bit value to use H format specifier, now that h is signed-only.
This commit is contained in:
parent
89d017d072
commit
0b13e7c153
23 changed files with 86 additions and 86 deletions
|
@ -38,30 +38,30 @@ RgnHandle = FakeType("(RgnHandle)0")
|
|||
ThemeBrush = Type("ThemeBrush", "h")
|
||||
ThemeColor = Type("ThemeColor", "h")
|
||||
ThemeTextColor = Type("ThemeTextColor", "h")
|
||||
ThemeMenuBarState = Type("ThemeMenuBarState", "h")
|
||||
ThemeMenuState = Type("ThemeMenuState", "h")
|
||||
ThemeMenuType = Type("ThemeMenuType", "h")
|
||||
ThemeMenuItemType = Type("ThemeMenuItemType", "h")
|
||||
ThemeFontID = Type("ThemeFontID", "h")
|
||||
ThemeTabStyle = Type("ThemeTabStyle", "h")
|
||||
ThemeTabDirection = Type("ThemeTabDirection", "h")
|
||||
ThemeMenuBarState = Type("ThemeMenuBarState", "H")
|
||||
ThemeMenuState = Type("ThemeMenuState", "H")
|
||||
ThemeMenuType = Type("ThemeMenuType", "H")
|
||||
ThemeMenuItemType = Type("ThemeMenuItemType", "H")
|
||||
ThemeFontID = Type("ThemeFontID", "H")
|
||||
ThemeTabStyle = Type("ThemeTabStyle", "H")
|
||||
ThemeTabDirection = Type("ThemeTabDirection", "H")
|
||||
ThemeDrawState = Type("ThemeDrawState", "l")
|
||||
ThemeCursor = Type("ThemeCursor", "l")
|
||||
ThemeCheckBoxStyle = Type("ThemeCheckBoxStyle", "h")
|
||||
ThemeScrollBarArrowStyle = Type("ThemeScrollBarArrowStyle", "h")
|
||||
ThemeScrollBarThumbStyle = Type("ThemeScrollBarThumbStyle", "h")
|
||||
ThemeCheckBoxStyle = Type("ThemeCheckBoxStyle", "H")
|
||||
ThemeScrollBarArrowStyle = Type("ThemeScrollBarArrowStyle", "H")
|
||||
ThemeScrollBarThumbStyle = Type("ThemeScrollBarThumbStyle", "H")
|
||||
CTabHandle = OpaqueByValueType("CTabHandle", "ResObj")
|
||||
ThemeTrackEnableState = Type("ThemeTrackEnableState", "b")
|
||||
ThemeTrackPressState = Type("ThemeTrackPressState", "b")
|
||||
ThemeThumbDirection = Type("ThemeThumbDirection", "b")
|
||||
ThemeTrackAttributes = Type("ThemeTrackAttributes", "h")
|
||||
ThemeTrackAttributes = Type("ThemeTrackAttributes", "H")
|
||||
ControlPartCode = Type("ControlPartCode", "h")
|
||||
ThemeWindowAttributes = Type("ThemeWindowAttributes", "l")
|
||||
ThemeWindowType = Type("ThemeWindowType", "h")
|
||||
ThemeTitleBarWidget = Type("ThemeTitleBarWidget", "h")
|
||||
ThemeArrowOrientation = Type("ThemeArrowOrientation", "h")
|
||||
ThemePopupArrowSize = Type("ThemePopupArrowSize", "h")
|
||||
ThemeGrowDirection = Type("ThemeGrowDirection", "h")
|
||||
ThemeWindowType = Type("ThemeWindowType", "H")
|
||||
ThemeTitleBarWidget = Type("ThemeTitleBarWidget", "H")
|
||||
ThemeArrowOrientation = Type("ThemeArrowOrientation", "H")
|
||||
ThemePopupArrowSize = Type("ThemePopupArrowSize", "H")
|
||||
ThemeGrowDirection = Type("ThemeGrowDirection", "H")
|
||||
ThemeSoundKind = OSTypeType("ThemeSoundKind")
|
||||
ThemeDragSoundKind = OSTypeType("ThemeDragSoundKind")
|
||||
ThemeBackgroundKind = Type("ThemeBackgroundKind", "l")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue