search for: loadimage

Displaying 19 results from an estimated 19 matches for "loadimage".

Did you mean: xloadimage
2008 Apr 01
10
Recalcitrant CSS background-image
My app has a stylesheet that includes this definition: div.loadimage { width:580px; height:310px; background-image: url("/images/load.gif") no-repeat center 0% 0%; } The purpose is to use with some nice javascript by Patrick H. Lauke for fading in images. The div is supposed to include a "loading image" image which is overwritten by the fi...
2016 Dec 15
4
UEFI support for chain.c32 in 6.04 syslinux
Hi Folks , Can you please let me know if there is any fix for chain loading UEFI boot loader using chain.c32 in 6.04 release ? I am booting my system with syslinux.efi and want to chain load to windows or sex specific boot loader in the second stage . Thanks Robin
2018 May 21
1
UEFI support for chain.c32 in 6.04 syslinux
...There is a patch I'm reviewing for a new module to chainload (U)EFI > but it needs a lot of style cleanup. The chainloading of (U)EFI > binaries should be a lot closer to how linux.c32 works though might > in > the future contain (U)EFI-specific options.??See > EFI_BOOT_SERVICES.LoadImage(). Did anything ever come of this? I'm about to be under some pressure to upgrade our aging PXE boot menu system to support UEFI, and as you might imagine, we currently rely quite heavily on chainloading (there are currently at least 38 invocations of pxechain.cbt, and yes, I'm still using...
2016 Aug 01
0
new version of package water: Actual Evapotranspiration with Energy Balance Models
...CITRA-MCBbc". This method chooses the coldest and hottest anchors pixels availables. Previous method ("CITRA-MCBr") chooses random pixel who meets the conditions. CITRA-MCBbc is now the default method for calcAnchors * General remote sensing functions moved to a separate file * loadImage detects when there is more than 1 image on the working folder * Rn, G, H, LE are restricted to values > 0 * Improvements to anchors pixels selection: more releaxed hot temperature criterium, distance, mean of many pixels, etc * Added two methods for land surface estimation: single channel and...
2016 Aug 01
0
new version of package water: Actual Evapotranspiration with Energy Balance Models
...CITRA-MCBbc". This method chooses the coldest and hottest anchors pixels availables. Previous method ("CITRA-MCBr") chooses random pixel who meets the conditions. CITRA-MCBbc is now the default method for calcAnchors * General remote sensing functions moved to a separate file * loadImage detects when there is more than 1 image on the working folder * Rn, G, H, LE are restricted to values > 0 * Improvements to anchors pixels selection: more releaxed hot temperature criterium, distance, mean of many pixels, etc * Added two methods for land surface estimation: single channel and...
2009 Apr 03
3
No icons in my app
How programs looks executed on WINE (Ubuntu 8.10): http://i41.tinypic.com/2nsnvxh.jpg And on WinXP SP3: http://i39.tinypic.com/6fm6o7.jpg Note there's also no text on StatusBar. Icons are loaded from resources with LoadImage(GetModuleHandle(0), 1, IMAGE_ICON, 0,0,0)). Any ideas? Thanks in advance.
2007 Aug 25
5
onLoad event with an update function
Hello, I am using the following code: new Ajax.Request(''ajax.php'', { parameters: { task: ''home'' }, onSuccess: function(transport) { $(''home_montage'').update(transport.responseText); new Effect.Appear(
2016 Mar 20
0
[PATCH 0/1] EFI image booting capabilities
...+1061,97 @@ static int exit_boot(struct boot_params > return 0; > } > > + > +/* efi_boot_efi: > + * Boots an efi image > + */ > +int efi_boot_efi(void *kernel_buf, size_t kernel_size, > + char *cmdline, int cmdlineSize) > +{ > + > +char* szLoadImage = "LoadImage()"; > +char* szHandleProtocol = "HandleProtocol()"; > +char* szStartImage = "StartImage()"; > + > +char* action = NULL; > + > +EFI_LOADED_IMAGE * image_info = NULL; > +EFI_HANDLE Child_image_handle; > +EFI_L...
2016 Dec 23
0
UEFI support for chain.c32 in 6.04 syslinux
...to a (U)EFI environment. There is a patch I'm reviewing for a new module to chainload (U)EFI but it needs a lot of style cleanup. The chainloading of (U)EFI binaries should be a lot closer to how linux.c32 works though might in the future contain (U)EFI-specific options. See EFI_BOOT_SERVICES.LoadImage(). -- -Gene
2015 Feb 20
6
[PATCH 0/1] EFI image booting capabilities
...i_pollchar(void) { SIMPLE_INPUT_INTERFACE *in = ST->ConIn; @@ -1042,6 +1061,97 @@ static int exit_boot(struct boot_params return 0; } + +/* efi_boot_efi: + * Boots an efi image + */ +int efi_boot_efi(void *kernel_buf, size_t kernel_size, + char *cmdline, int cmdlineSize) +{ + +char* szLoadImage = "LoadImage()"; +char* szHandleProtocol = "HandleProtocol()"; +char* szStartImage = "StartImage()"; + +char* action = NULL; + +EFI_LOADED_IMAGE * image_info = NULL; +EFI_HANDLE Child_image_handle; +EFI_LOADED_IMAGE * Child_image_info = NULL; +EFI_STATUS status; +...
2019 Jan 11
0
Wine release 4.0-rc6
...when displaying it. Paul Gofman (5): user32/tests: Add test for 8 bit image stretch mode in CopyImage(). user32/tests: Add test for 16 bit image stretch mode in CopyImage(). user32/tests: Factor out compare_bitmap_bits() function. user32/tests: Add tests for stretch mode in LoadImage(). d3dx9: Return correct comment length from get_instr_length(). Piotr Caban (1): server: Fix process trace_data initialization race on Mac. Roberto Pungartnik (1): po: Update Portuguese (Brazil) translation. Thanasis Papoutsidakis (1): crypt32: Add some missing CRYPT_STR...
2008 Feb 18
0
[LLVMdev] cross compiling with the C backend
Kevin André wrote: > For my master's thesis, I am trying to cross compile programs for the > PSP (PlayStation Portable) with LLVM and llvm-gcc. > > This is what I do: > > (1) compile a program and the libraries it uses (libpng etc.) with llvm-gcc > (2) link the bitcode files with llvm-ld into one file > (3) run "llc -march=c" on the result > (4) compile
2008 Feb 18
4
[LLVMdev] cross compiling with the C backend
For my master's thesis, I am trying to cross compile programs for the PSP (PlayStation Portable) with LLVM and llvm-gcc. This is what I do: (1) compile a program and the libraries it uses (libpng etc.) with llvm-gcc (2) link the bitcode files with llvm-ld into one file (3) run "llc -march=c" on the result (4) compile the resulting C source with the PSP toolchain It seems to work
2011 Feb 04
0
Wine release 1.3.13
...ot file. kernel32: Add proper English messages for all error codes. winedbg: Add dumping of floating point registers for x86_64. dbghelp: Add a helper function to determine the name of the wine loader. dbghelp: Use wine64 as loader name on 64-bit. user32: Propagate the LoadImage flags into the low-level loader functions. user32: Fix LoadImage behavior with zero size and no LR_DEFAULTSIZE. server: Create anonymous file mappings in the config directory if the server directory is mounted noexec. ntdll: Fix frame address check in RtlCaptureStackBackTrace to m...
2019 Mar 03
0
Wine release 3.0.5
...emented function slc.dll.SLOpen 46157 Doxie 2.10.3 crashes on unimplemented function msvcr120.dll._vscprintf_l 46168 dotnet35sp1 installer has an error under wow64 46172 Multiple applications from Windows 7-10 crash on unimplemented function slc.dll.SLGetLicensingStatusInformation 46186 LoadImageA searches images in the wrong directory 46210 explorer /desktop leaks atoms from DDE interface 46215 File Open Dialog fails to set focus to Filename text box 46229 server/ptrace: NetBSD debug register storage 46328 Installer for Tanglet 1.5.3 crashes at target directory selection 4643...
2013 Feb 15
0
Wine release 1.5.24
...w paint flags in the get_visible_region request. user32: Don't paint to the surface if the window has a pixel format, regardless of the state of the top parent. wininet: Don't reset the available size after the async has been queued. user32: Prefer loading color cursors in LoadImage. ntdll: Add a helper function to check that a fault address lies in a known virtual memory view. ntdll: Check for invalid %gs value in 32-bit code. winex11: Preserve the client window when changing the window visual. server: Don't support debug registers in ptrace if sys...
2018 Dec 07
0
Wine release 4.0-rc1
...3 Used e-Sword successfully a few months ago, but when I try now I get a Program Error. 46179 Multiple Windows 10 ARM{32,64} apps need 'kernel32.dll.GetCurrentThreadStackLimits' to get stack start address 46180 wineserver does not release atom on unregistering window classes 46186 LoadImageA searches images in the wrong directory 46210 explorer /desktop leaks atoms from DDE interface 46229 server/ptrace: NetBSD debug register storage 46235 Opening ADODB.Connection results in: Method '~' of object '~' failed ----------------------------------------------------...
2008 Feb 22
0
Wine release 0.9.56
...or PI Nodes. msxml3: Implement get_data for PI Nodes. msxml3: Added PI tests. msxml3: Implement IDispatch for IXMLDOMImplementation. msxml3: Implement IDispatch for IXMLDOMNodeList. slc: Added stub for SLGetWindowsInformationDWORD. Andrew Riedi (1): user32: Test LoadImage() to load an icon as a cursor. Andrew Talbot (14): winejoystick.drv: Remove unneeded casts. wineoss.drv: Remove unneeded casts. atl: Assign to structs instead of using memcpy. avifil32: Assign to structs instead of using memcpy. cabinet: Assign to structs instead of u...
2008 Apr 18
1
Wine release 0.9.60
...king in World of Warcraft after upgrade to latest wine (0.9.59) (affects Photoshop, too) 12579 regression : cohabitation between windows in "mdi" application ---------------------------------------------------------------- Changes since 0.9.59: Alex Villac?s Lasso (1): user32: LoadImage(IMAGE_BITMAP) should reject invalid BMP files (with tests). Alexander Dorofeyev (21): wined3d: Don't copy the extra line. wined3d: Implement CONVERT_RGB32_888 conversion. wined3d: Add ENTER_GL/LEAVE_GL in IWineD3DDeviceImpl_Uninit3D. wined3d: Add ENTER_GL/LEAVE_GL in IW...