On Thu, Feb 23, 2012 at 9:28 AM, Jeff Hardy wrote:
> On Thu, Feb 23, 2012 at 7:05 AM, Slide wrote:
> > I'm feeling pretty masochistic lately, so maybe I'll write it in pure
> Python
> > :-) The other option is pulling in something like wrc.exe from WINE
> > depending on the license winres from b
On Thu, Feb 23, 2012 at 7:05 AM, Slide wrote:
> I'm feeling pretty masochistic lately, so maybe I'll write it in pure Python
> :-) The other option is pulling in something like wrc.exe from WINE
> depending on the license winres from binutils is another option. I can check
> into those options as
I'm feeling pretty masochistic lately, so maybe I'll write it in pure
Python :-) The other option is pulling in something like wrc.exe from WINE
depending on the license winres from binutils is another option. I can
check into those options as well. What license would we want in order to
redistribu
On Wed, Feb 22, 2012 at 11:22 AM, Slide wrote:
> The icon has to be part of unmanaged resources, which can be defined using
> DefineUnmanagedResource, but that function expects a compiled resource file,
> not a .ico file. So, I have to generate the compiled resource file from the
> .ico file to em
The icon has to be part of unmanaged resources, which can be defined using
DefineUnmanagedResource, but that function expects a compiled resource
file, not a .ico file. So, I have to generate the compiled resource file
from the .ico file to embed as the unmanaged resource. Unless I am
completely mi
On Wed, Feb 22, 2012 at 9:44 AM, Slide wrote:
> Currently pyc.py only uses .NET imports and classes, I'm looking at adding
> support for an embedded icon and win32 (native) resources in general. Are
> people opposed to adding a dependency on the struct module, or ctypes to
> accomplish that stuff?
Currently pyc.py only uses .NET imports and classes, I'm looking at adding
support for an embedded icon and win32 (native) resources in general. Are
people opposed to adding a dependency on the struct module, or ctypes to
accomplish that stuff?
Thanks,
Slide
__