<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;"><DIV>you can try to get the old wdk from Windows Connect Site</DIV>
<DIV> </DIV>
<DIV><A href="http://www.microsoft.com/whdc/devtools/ddk/default.mspx">http://www.microsoft.com/whdc/devtools/ddk/default.mspx</A><BR></DIV>
<DIV>It should install fine on 64-bit. If not, you can always install it on 32-bit, then just copy the whole dir to a different machine.</DIV>
<DIV> </DIV>
<DIV>Without shared folder source, you can still go ahead to work on dnd, but eventually you will need to extend the features of shared folder driver in order to support dnd.</DIV>
<DIV> </DIV>
<DIV>At the moment, you can just share the whole host C: drive as read/write, for example, when you drag a file from host to guest, inside guest you can retrieve the file from the mapped network drive. When you drag from guest to host, you simple save a file to the shared folder.</DIV>
<DIV> </DIV>
<DIV>The difficulty is to how to enable an app (e.g., Windows Explorer inside the guest) to pick up the dnd action, coming from the host, and verse versa. From my initial investigation, it requires a deep understanding of Microsoft COM, the very low level of drop/drag impl, in order for an invidual app to pick up the drag/drop event. In other words, it may requires you to re-implement a low level mechanism of Windows drag and drop.</DIV>
<DIV> </DIV>
<DIV>I might be wrong, though.</DIV>
<DIV> </DIV>
<DIV><BR>--- On <B>Wed, 4/21/10, Sergiy Byelozyorov <I><rryk@graphics.cs.uni-sb.de></I></B> wrote:<BR></DIV>
<BLOCKQUOTE style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: rgb(16,16,255) 2px solid"><BR>From: Sergiy Byelozyorov <rryk@graphics.cs.uni-sb.de><BR>Subject: Re: [vbox-dev] Windows build instructions<BR>To: "Huihong Luo" <huisinro@yahoo.com><BR>Cc: "VirtualBox developer's list" <vbox-dev@virtualbox.org><BR>Date: Wednesday, April 21, 2010, 4:39 PM<BR><BR>
<DIV id=yiv1114348999>
<DIV class=gmail_quote>
<BLOCKQUOTE class=gmail_quote style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<TABLE cellSpacing=0 cellPadding=0 border=0>
<TBODY>
<TR>
<TD vAlign=top>
<DIV>(2) C:\WinDDK\3790.1830</DIV></TD></TR></TBODY></TABLE></BLOCKQUOTE>
<DIV><BR></DIV>
<DIV>Where can I get WinDDK? Will it install on Windows 7 64-bit?</DIV>
<DIV> </DIV>
<BLOCKQUOTE class=gmail_quote style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<TABLE cellSpacing=0 cellPadding=0 border=0>
<TBODY>
<TR>
<TD vAlign=top>
<DIV>if you do 64-bit build, it's very involving, you need to have a gcc cross compile tool chain to build a component.</DIV></TD></TR></TBODY></TABLE></BLOCKQUOTE>
<DIV><BR></DIV>
<DIV>So far I want to build only 32-bit version.</DIV>
<DIV> </DIV>
<BLOCKQUOTE class=gmail_quote style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<TABLE cellSpacing=0 cellPadding=0 border=0>
<TBODY>
<TR>
<TD vAlign=top>
<DIV> As for drag and drop support, I spent some time too, it's a very difficult job, just be prepared. The current vbox COM model is incompatible with Windows DnD requirement, which requires single apartment threading, so you will have to do it inside a dedicated thread, and then there are other obstacles to deal with.</DIV></TD></TR></TBODY></TABLE></BLOCKQUOTE>
<DIV><BR></DIV>
<DIV>Sounds difficult, but I believe that makes it even more challenging and interesting :).</DIV>
<DIV> </DIV>
<BLOCKQUOTE class=gmail_quote style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<TABLE cellSpacing=0 cellPadding=0 border=0>
<TBODY>
<TR>
<TD vAlign=top>
<DIV>If you want to drag and drop files, since the vbox shared folders driver (for windows guest) is not open sourced, you won't be able to do it.</DIV></TD></TR></TBODY></TABLE></BLOCKQUOTE>
<DIV><BR></DIV>
<DIV>Does that mean that I will not be able to create shared folder programmatically?</DIV>
<DIV><BR></DIV>
<BLOCKQUOTE class=gmail_quote style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<TABLE cellSpacing=0 cellPadding=0 border=0>
<TBODY>
<TR>
<TD vAlign=top>
<DIV><BR><BR>--- On <B>Wed, 4/21/10, Sergiy Byelozyorov <I><<A href="http://us.mc343.mail.yahoo.com/mc/compose?to=rryk@graphics.cs.uni-sb.de" target=_blank rel=nofollow ymailto="mailto:rryk@graphics.cs.uni-sb.de">rryk@graphics.cs.uni-sb.de</A>></I></B> wrote:<BR></DIV>
<BLOCKQUOTE style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: rgb(16,16,255) 2px solid"><BR>From: Sergiy Byelozyorov <<A href="http://us.mc343.mail.yahoo.com/mc/compose?to=rryk@graphics.cs.uni-sb.de" target=_blank rel=nofollow ymailto="mailto:rryk@graphics.cs.uni-sb.de">rryk@graphics.cs.uni-sb.de</A>><BR>Subject: [vbox-dev] Windows build instructions<BR>To: "VirtualBox developer's list" <<A href="http://us.mc343.mail.yahoo.com/mc/compose?to=vbox-dev@virtualbox.org" target=_blank rel=nofollow ymailto="mailto:vbox-dev@virtualbox.org">vbox-dev@virtualbox.org</A>><BR>Date: Wednesday, April 21, 2010, 3:30 PM
<DIV>
<DIV></DIV>
<DIV class=h5><BR><BR>
<DIV>
<DIV>Hello, VirtualBox Team</DIV>
<DIV><BR></DIV>
<DIV>I am looking forward to devote some of my free time to develop host/guest drag&drop support for VirtualBox. I have tried this once few years ago, but didn't find enough time then due to some significant changes in my life. Since than I have improved my C++ skills and now my life is more stable. So I would like to try again.</DIV>
<DIV><BR></DIV>
<DIV>I have read Windows build instructions only to find out that my development environment is heavily different from the one required. I am using Windows 7 64-bit, Visual Studio 2008, Windows SDK 2008 and WDK (DDK is not available for download anymore). Is there any chance that I will be able to build VirtualBox with these tools? I have noticed that requirements haven't changed much since I have seen them last time (over 2 years ago). Does that mean that windows builds are not maintained anymore? Or maybe it's just the outdated page?</DIV><BR>Sergiy<BR></DIV><BR></DIV></DIV>-----Inline Attachment Follows-----<BR><BR>
<DIV>_______________________________________________<BR>vbox-dev mailing list<BR><A href="http://us.mc343.mail.yahoo.com/mc/compose?to=vbox-dev@virtualbox.org" target=_blank rel=nofollow>vbox-dev@virtualbox.org</A><BR><A href="http://vbox.innotek.de/mailman/listinfo/vbox-dev" target=_blank rel=nofollow>http://vbox.innotek.de/mailman/listinfo/vbox-dev</A><BR></DIV></BLOCKQUOTE></TD></TR></TBODY></TABLE><BR>_______________________________________________<BR>vbox-dev mailing list<BR><A href="http://us.mc343.mail.yahoo.com/mc/compose?to=vbox-dev@virtualbox.org" target=_blank rel=nofollow ymailto="mailto:vbox-dev@virtualbox.org">vbox-dev@virtualbox.org</A><BR><A href="http://vbox.innotek.de/mailman/listinfo/vbox-dev" target=_blank rel=nofollow>http://vbox.innotek.de/mailman/listinfo/vbox-dev</A><BR><BR></BLOCKQUOTE></DIV><BR></DIV></BLOCKQUOTE></td></tr></table>