Skip to content

Commit 0af002c

Browse files
committed
Fix win32.
1 parent 8707cba commit 0af002c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/win/shell32.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const (
4949
)
5050

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

5454
const (
5555
FOS_OVERWRITEPROMPT _FILEOPENDIALOGOPTIONS = 0x2
@@ -78,7 +78,7 @@ const (
7878
)
7979

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

8383
const (
8484
SIGDN_NORMALDISPLAY SIGDN = 0x00000000

0 commit comments

Comments
 (0)