command line tool: processing files dropped on it?

2008-10-01 Thread Barrie Green
hi all, Hopefully someone can point me in the right direction. I have a command line tool, written in c++, that I use on my windows machine, which allows me to drop files onto it. Windows ensures the tool receives the paths of the files dropped through the argc/argv arguments in main. I have

Re: command line tool: processing files dropped on it?

2008-10-01 Thread Chris Hanson
On Oct 1, 2008, at 3:46 AM, Barrie Green wrote: I have a command line tool, written in c++, that I use on my windows machine, which allows me to drop files onto it. Windows ensures the tool receives the paths of the files dropped through the argc/argv arguments in main. I have ported my tool

Re: command line tool: processing files dropped on it?

2008-10-01 Thread Sherm Pendley
On Wed, Oct 1, 2008 at 6:46 AM, Barrie Green [EMAIL PROTECTED] wrote: hi all, Hopefully someone can point me in the right direction. I have a command line tool, written in c++, that I use on my windows machine, which allows me to drop files onto it. Windows ensures the tool receives the

Re: command line tool: processing files dropped on it?

2008-10-01 Thread I. Savant
On Wed, Oct 1, 2008 at 6:46 AM, Barrie Green [EMAIL PROTECTED] wrote: But I'm hampered by the fact that finder won't let me drag n drop files onto my tool! I can't even use it from the Open With Context menu in finder. I'm sure i've seen other (OS X) tools process files like this, although

Re: command line tool: processing files dropped on it?

2008-10-01 Thread Herb Petschauer
2008/10/1 Sherm Pendley [EMAIL PROTECTED]: On Wed, Oct 1, 2008 at 6:46 AM, Barrie Green [EMAIL PROTECTED] wrote: hi all, Hopefully someone can point me in the right direction. I have a command line tool, written in c++, that I use on my windows machine, which allows me to drop files onto