Skip to content

Commit

Permalink
Fix win32.
Browse files Browse the repository at this point in the history
  • Loading branch information
ncruces committed Feb 26, 2024
1 parent 8707cba commit 0af002c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/win/shell32.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const (
)

// https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/ne-shobjidl_core-_fileopendialogoptions
type _FILEOPENDIALOGOPTIONS int
type _FILEOPENDIALOGOPTIONS uint32

const (
FOS_OVERWRITEPROMPT _FILEOPENDIALOGOPTIONS = 0x2
Expand Down Expand Up @@ -78,7 +78,7 @@ const (
)

// https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/ne-shobjidl_core-sigdn
type SIGDN int
type SIGDN int32

const (
SIGDN_NORMALDISPLAY SIGDN = 0x00000000
Expand Down

0 comments on commit 0af002c

Please sign in to comment.