Jump to content

jumper

Member
  • Posts

    1,944
  • Joined

  • Last visited

  • Days Won

    7
  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by jumper

  1. It's probably not in the source code, but inserted by the compiler for try-except blocks.
  2. </pre><li> In code box? </li> <li> line Hmm. Definitely not what I entered.... Edit: And garbled upon edit. The inline editor has never been as good as the old full-featured editor that opened full-window.
  3. Try: Msvcr80.dll V8.00.50727.762 Mozcrt19.dll V8.00.0000 These load for me in ProcWin on 98fe.
  4. Please add "SE" to the topic title. Without it, first edition is implied.
  5. Perhaps off-screen compositing is using a YUV color space or other compressed bitmap to reduce memory consumption.
  6. boo+.ini ? boot.ini (dot is in italics)
  7. IE 5.01 or 5.5 For 98fe or 98se?
  8. Slipstream the driver into the OS install. Sleep requests can be blocked by any driver, program, or process. It might be possible to kill vga.sys programmatically once the new driver takes control.
  9. The restart is needed to deactivate the default driver. This can be prevented by installing the drivers for the new hardware before attaching it.
  10. The combination of things you want might not be possible. So install IE5.5, test, then try "removing" it and testing again.
  11. Don't extract, install! You need other supporting files as well.
  12. Dr Watson for system snapshots with versions and descriptions of drivers. System File Checker for detecting file changes. Both available from the Tools menu in System Information, or directly from %WinDir%. Revert system to last working. Take snapshot with DrWatson and have SFC scan and update. Try installing USP2.1, then USP3.0beta. Take new snapshots and have SFC report changes.
  13. The logs look correct. I'll check out the garbled text.
  14. Very good. Then these should also work: CryptEnumProvidersW=>CRYPT32:CryptEnumProvidersU CryptSetProviderW=>CRYPT32:CryptSetProviderU CryptSignHashW=>CRYPT32:CryptSignHashU CryptVerifySignatureW=>CRYPT32:CryptVerifySignatureU
  15. Try the "Desktop... -Position" page. (Down two in left-side menu.)
  16. I'm also on Win98fe. IE is 4.0. Shlwapi.dll is part of IE. Win98se has IE 5.0, ME has 5.5. Best way to update Shlwapi is to update IE to 5.5. (IE 6.0 sometimes causes Explorer hangs.)
  17. Is W2k detecting it via P-n--p and correctly reporting the make and model? If not, you might need a create a custom driver for it.
  18. Analog cable? Use the auto-resize button on the monitor. Check the advanced display properties for H and V synch options.as well as size.
  19. A stub for GetGlyphIndices{A|W} should take five parameters and return GDI_ERROR. A small, full version that calls Usp10:ScriptGetCMap is in KernelEx:UberGDI.c.
  20. In Display Properties>Settings>Advanced>Performance, try reducing the Graphics Hardware Acceleration level to correct problems with the mouse pointer. Also try different color depths and resolutions.
  21. Excellent read. Kernelex 4.5.2 only fixed the delay; the sqlite3 write problem still exists. LockFile in 9x works differently than in NT, so can't be used directly to implement LockFileEx and also needs to be fixed itself. Sqlite3 uses file locking to maintain database integrity on multithreaded, multi-core systems. Because 9x doesn't support multiple cpus/cores/hyperthreads, the simplest solution might be to replace the *LockFileEx failure stubs MS provided in Kernel32.dll with success stubs: LockFileEx = o6 UnLockFileEx = o5 Also for NT modes: LockFile = o5 UnLockFile = o5 These will work as NT expects with FileMapping while faking all flags and overlapped I/O. Create a new compatibility mode in Core.ini by cloning XP3 or Vista. Use these stub definitions in a new copy of Kexstubs and add it to Contents. Use this new test mode for mozsqlite3.dll or sqlite3.dll in Firefox going back to 3.6.
  22. Can someone with this working try clearing their logs, then refreshing a webpage or adding it to Bookmarks? The new log entries might reveal what API sqlite is having trouble with when trying to update its database files.
×
×
  • Create New...