2017-08-21 19:20:07 -04:00
|
|
|
! Copyright (C) 2017 Alexander Ilin.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2017-08-21 19:27:03 -04:00
|
|
|
USING: alien.data alien.strings io.encodings.utf16n kernel math
|
|
|
|
sequences windows.messages windows.shell32 windows.types ;
|
2017-08-21 19:20:07 -04:00
|
|
|
IN: windows.dropfiles
|
2017-08-21 19:27:03 -04:00
|
|
|
|
|
|
|
: filecount-from-hdrop ( hdrop -- n )
|
|
|
|
0xFFFFFFFF f 0 DragQueryFile ;
|
|
|
|
|
|
|
|
: filenames-from-hdrop ( hdrop -- filenames )
|
|
|
|
dup filecount-from-hdrop <iota>
|
|
|
|
[
|
|
|
|
2dup f 0 DragQueryFile 1 + ! get size of filename buffer
|
|
|
|
dup WCHAR <c-array>
|
|
|
|
[ swap DragQueryFile drop ] keep
|
|
|
|
utf16n alien>string
|
|
|
|
] with map ;
|