Re: filever.exe sub?

2019-02-01 Thread ToddAndMargo via perl6-users
On 2/1/19 6:24 PM, ToddAndMargo via perl6-users wrote: On 2/1/19 4:26 PM, ToddAndMargo via perl6-users wrote: On 2/1/19 10:02 AM, Timo Paulssen wrote: On 01/02/2019 01:33, Bruce Gray wrote: To call those Windows APIs in Perl 6, you would use NativeCall. Don't forget that Todd wanted to use

Re: filever.exe sub?

2019-02-01 Thread ToddAndMargo via perl6-users
On 2/1/19 4:26 PM, ToddAndMargo via perl6-users wrote: On 2/1/19 10:02 AM, Timo Paulssen wrote: On 01/02/2019 01:33, Bruce Gray wrote: To call those Windows APIs in Perl 6, you would use NativeCall. Don't forget that Todd wanted to use this on non-windows with not-wine. NativeCall on linux

Re: filever.exe sub?

2019-02-01 Thread ToddAndMargo via perl6-users
On 2/1/19 10:02 AM, Timo Paulssen wrote: On 01/02/2019 01:33, Bruce Gray wrote: To call those Windows APIs in Perl 6, you would use NativeCall. Don't forget that Todd wanted to use this on non-windows with not-wine. NativeCall on linux won't run windows code all by itself. That said, wine

Re: filever.exe sub?

2019-02-01 Thread Timo Paulssen
On 01/02/2019 01:33, Bruce Gray wrote: > To call those Windows APIs in Perl 6, you would use NativeCall. > Don't forget that Todd wanted to use this on non-windows with not-wine. NativeCall on linux won't run windows code all by itself. That said, wine is still a good source for info on how

Re: filever.exe sub?

2019-01-31 Thread Bruce Gray
> On Jan 31, 2019, at 12:46 PM, ToddAndMargo via perl6-users > wrote: > > On 1/29/19 9:53 PM, ToddAndMargo via perl6-users wrote: >> Hi All, >> Windows provides a utility called filever.exe which will >> tell you the revision of and exe file. (You can also see this >> through the gui with

Re: filever.exe sub?

2019-01-31 Thread ToddAndMargo via perl6-users
On 1/29/19 9:53 PM, ToddAndMargo via perl6-users wrote: Hi All, Windows provides a utility called filever.exe which will tell you the revision of and exe file.  (You can also see this through the gui with properties). Currently I run filever.exe through Wine.  It is cumbersome, especially

Re: filever.exe sub?

2019-01-30 Thread Patrick Spek via perl6-users
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 A quick search yields me the program `pev`: http://pev.sourceforge.net/doc/manual/en_us/ Maybe this can help you out. If it performs the tasks you need it to perform, you could browse the source code and rewrite it into a Perl 6 project :) On Tue,

filever.exe sub?

2019-01-29 Thread ToddAndMargo via perl6-users
Hi All, Windows provides a utility called filever.exe which will tell you the revision of and exe file. (You can also see this through the gui with properties). Currently I run filever.exe through Wine. It is cumbersome, especially since Wine floods STDERR. I work around it. Do we have a