Re: How to create a Win32::API::Struct struct if the struct has union in it?

2011-12-01 Thread Aldo Calpini
On 27.11.2011 02:29, Burak Gürsoy wrote: Hi, I'm wondering about how to create a SYSTEM_INFO structure from Perl: http://msdn.microsoft.com/en-us/library/windows/desktop/ms724958(v=vs.85).aspx to pass this to GetNativeSystemInfo(). Win32::API::Struct->typedef() seems to support simple structs

Re: How to create a Win32::API::Struct struct if the struct has union in it?

2011-12-01 Thread $Bill Luebkert
On 11/30/2011 14:52, Cosimo Streppone wrote: On Sun, 27 Nov 2011 02:29:01 +0100, Burak Gürsoy wrote: I'm wondering about how to create a SYSTEM_INFO structure from Perl: http://msdn.microsoft.com/en-us/library/windows/desktop/ms724958(v=vs.85).aspx to pass this to GetNativeSystemInfo(). Win3