factor/basis/windows/dropfiles/dropfiles.factor

18 lines
581 B
Factor
Raw Normal View History

2017-08-21 19:20:07 -04:00
! Copyright (C) 2017 Alexander Ilin.
! See http://factorcode.org/license.txt for BSD license.
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
: 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 ;