Mail Archives: djgpp/1997/09/21/06:10:08
On Thu, 18 Sep 1997, Salvador Eduardo Tropea (SET) wrote:
> At least in my system the Windows clipboard seems to be slower than
> a virtual disk or even the HD with enough cache.
> I don't know why but the Win 3.1 clipboard works very slow (I tried coping
> 300Kb from write).
How slow? Can you post some numbers (e.g., a comparison between
`memcpy' of 100KB and `dosmemput' 100KB into the clipboard?
Most of the clipboard access is just copying data from protected-mode
memory to conventional memory. If you use `movedata' or `dosmemput',
it shouldn't be slower than any other block move.
> I think one solution could be a real mode TSR loaded before windows.
This might or might not work with Windows 95, because it catches
real-mode interrupts on different levels and not always lets them go
all the way down to your TSR.
- Raw text -