Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(12) | Call(12) | Derive(0) | Import(0)
src/p/y/PyObjC-PyInstaller-HEAD/pyinstaller/PyInstaller/utils/icon.py PyObjC-PyInstaller(Download)
else: grpname = -index data = win32api.LoadResource(hsrc, RT_GROUP_ICON, grpname) win32api.UpdateResource(hdst, RT_GROUP_ICON, grpname, data) for iconname in win32api.EnumResourceNames(hsrc, RT_ICON): data = win32api.LoadResource(hsrc, RT_ICON, iconname)
src/p/y/PyInstaller-2.1/PyInstaller/utils/icon.py PyInstaller(Download)
else: grpname = -index data = win32api.LoadResource(hsrc, RT_GROUP_ICON, grpname) win32api.UpdateResource(hdst, RT_GROUP_ICON, grpname, data) for iconname in win32api.EnumResourceNames(hsrc, RT_ICON): data = win32api.LoadResource(hsrc, RT_ICON, iconname)
src/p/y/pyinstaller-HEAD/PyInstaller/utils/icon.py pyinstaller(Download)
else: grpname = -index data = win32api.LoadResource(hsrc, RT_GROUP_ICON, grpname) win32api.UpdateResource(hdst, RT_GROUP_ICON, grpname, data) for iconname in win32api.EnumResourceNames(hsrc, RT_ICON): data = win32api.LoadResource(hsrc, RT_ICON, iconname)
src/p/y/PyObjC-PyInstaller-HEAD/pyinstaller/PyInstaller/utils/winresource.py PyObjC-PyInstaller(Download)
enum_languages) for language in enum_languages: data = win32api.LoadResource(hsrc, type_, name, language) if not type_ in res: res[type_] = {}
src/p/y/PyInstaller-2.1/PyInstaller/utils/winresource.py PyInstaller(Download)
enum_languages) for language in enum_languages: data = win32api.LoadResource(hsrc, type_, name, language) if not type_ in res: res[type_] = {}
src/p/y/pyinstaller-HEAD/PyInstaller/utils/winresource.py pyinstaller(Download)
enum_languages) for language in enum_languages: data = win32api.LoadResource(hsrc, type_, name, language) if not type_ in res: res[type_] = {}
src/p/y/PyInstaller-2.1/PyInstaller/utils/versioninfo.py PyInstaller(Download)
def decode(pathnm): h = win32api.LoadLibraryEx(pathnm, 0, LOAD_LIBRARY_AS_DATAFILE) nm = win32api.EnumResourceNames(h, RESOURCE_TYPE['RT_VERSION'])[0] data = win32api.LoadResource(h, RESOURCE_TYPE['RT_VERSION'], nm) vs = VSVersionInfo()
src/p/y/pyinstaller-HEAD/PyInstaller/utils/versioninfo.py pyinstaller(Download)
def decode(pathnm): h = win32api.LoadLibraryEx(pathnm, 0, LOAD_LIBRARY_AS_DATAFILE) nm = win32api.EnumResourceNames(h, RESOURCE_TYPE['RT_VERSION'])[0] data = win32api.LoadResource(h, RESOURCE_TYPE['RT_VERSION'], nm) vs = VSVersionInfo()
src/p/y/PyObjC-PyInstaller-HEAD/pyinstaller/PyInstaller/utils/versioninfo.py PyObjC-PyInstaller(Download)
def decode(pathnm): h = win32api.LoadLibraryEx(pathnm, 0, LOAD_LIBRARY_AS_DATAFILE) nm = win32api.EnumResourceNames(h, RT_VERSION)[0] data = win32api.LoadResource(h, RT_VERSION, nm) vs = VSVersionInfo()