! Copyright (C) 2010 John Benediktsson ! See http://factorcode.org/license.txt for BSD license USING: accessors alien.c-types alien.data alien.strings alien.syntax classes.struct destructors kernel io.encodings.utf16n io.files.trash libc math sequences system windows.types ; IN: io.files.trash.windows M: windows send-to-trash ( path -- ) [ utf16n string>alien B{ 0 0 } append malloc-byte-array &free SHFILEOPSTRUCTW f >>hwnd FO_DELETE >>wFunc swap >>pFrom f >>pTo FOF_ALLOWUNDO FOF_NOCONFIRMATION bitor FOF_NOERRORUI bitor FOF_SILENT bitor >>fFlags SHFileOperationW [ throw ] unless-zero ] with-destructors ;