search for: setfilepoint

Displaying 20 results from an estimated 24 matches for "setfilepoint".

Did you mean: setfilepointer
2001 May 10
1
FlasKMPEG 0.60 actually works
...t figured out why). It does not seem to be important. I could start flaskmpeg.exe, select vob files, select codecs, everything actually. I also could flask the vob file and it worked fine (only tried uncompressed sound). One problem did arise, though. wine stopped with these commands. fixme:file:SetFilePointer 64-bit offsets not supported yet SetFilePointer(0000024c,80000000,00000000,00000000) fixme:file:SetFilePointer 64-bit offsets not supported yet SetFilePointer(0000024c,80000000,00000000,00000000) fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet. The avi file produced when wine crashe...
2001 Dec 04
2
Serial Errors
...OF_READ OF_SHARE_COMPAT trace:file:FILE_DoOpenFile AVICAP.DLL 0000 trace:file:FILE_DoOpenFile found /usr/share/wine-c/windows/system/avicap.dll = C:\WINDOWS\SYSTEM\AVICAP.DLL trace:file:FILE_DoOpenFile (AVICAP.DLL): OK, return = 72 trace:file:Win32HandleToDosFileHandle Got 5 for h32 72 trace:file:SetFilePointer handle 72 offset 0 origin 0 trace:file:ReadFile 72 0x40616c88 64 0x40616bd4 (nil) trace:file:SetFilePointer handle 72 offset 128 origin 0 trace:file:ReadFile 72 0x40616c48 64 0x40616bd4 (nil) trace:file:SetFilePointer handle 72 offset 640 origin 0 trace:file:ReadFile 72 0x403eb1c8 69056 0x40616bd...
2008 Dec 18
5
EverQuest - worked once, but no more
...32b > 0009:Call KERNEL32.GetFileType(00000058) ret=005bb338 > 0009:Ret KERNEL32.GetFileType() retval=00000001 ret=005bb338 > 0009:Call ntdll.RtlAllocateHeap(00bf0000,00000000,00001000) ret=005b6319 > 0009:Ret ntdll.RtlAllocateHeap() retval=00bf89b8 ret=005b6319 > 0009:Call KERNEL32.SetFilePointer(00000058,00000000,00000000,00000002) ret=005bb05c > 0009:Ret KERNEL32.SetFilePointer() retval=00001c5f ret=005bb05c > 0009:Call KERNEL32.SetFilePointer(00000058,00000000,0032e394,00000002) ret=005c9717 > 0009:Ret KERNEL32.SetFilePointer() retval=00001c5f ret=005c9717 > 0009:Call KER...
2002 Nov 17
2
Problem running Anstoss2 under Wine
Adrian Bunk wrote: >I'm trying to run Anstoss2 (a five years old German soccer simulation - >I'm only interested in the strategic part of the game) under Wine. I >tried the Debian package of the 20021031 Release and a self-compiled >package of a 20021116 CVS snapshot. The following messages occur during >the start of the game: > ><-- snip --> > >$ wine
2008 Jul 17
2
Quantasm
...ets caught in a loop reading the data file "QUANT0.DAT" Code: 0009:Call KERNEL32.CreateFileA(00a632b0 "C:\\QUANTASM\\QUANT0.DAT",80000000,00000001,00000000,00000003,00000000,00000000) ret=00647e7c 0009:Ret KERNEL32.CreateFileA() retval=00000010 ret=00647e7c 0009:Call KERNEL32.SetFilePointer(00000010,00000024,00000000,00000000) ret=00647e94 0009:Ret KERNEL32.SetFilePointer() retval=00000024 ret=00647e94 A few open and seek calls later, SetFilePointer gets called to the QUANT0.DAT file (10, 24) and then all hell breaks loose Code: 0009:Call KERNEL32.SetFilePointer(00000010,0000...
2002 Mar 02
0
Longman dictionary installer debugging
...d proper conversion fixme:file:_lclose16 stdio handle closed, need proper conversion fixme:file:_lclose16 stdio handle closed, need proper conversion fixme:file:_lclose16 stdio handle closed, need proper conversion trace:file:_lclose16 5 (handle32=80) trace:file:_lclose16 6 (handle32=88) trace:file:SetFilePointer handle -1 offset 222 high 0 origin 0 trace:file:WIN16_hread 5 03f70004 6192 trace:file:ReadFile -1 0x403c7dc4 6192 0x429767e8 (nil) trace:file:SetFilePointer handle 64 offset 3008 high 0 origin 0 trace:file:ReadFile 64 0x403cb33c 48 0x42976780 (nil) trace:file:SetFilePointer handle 64 offset 3008...
2013 May 05
4
Bug fix and compatibility patches for 1.3.0pre4
...E::_cnt to > 0 and FILE::_ptr to FILE::_base). By which I mean I read the MSVCRT > source from MSVC6.0 and it appears this is how things work. > How about just forgetting about base XP and require at least SP2 or some such? Alternatively, use win32api underneath instead, eg CreateFileW/SetFilePointer. > That source also includes an fseeki64()/ftelli64(), but they are not > defined in stdio.h. I wonder if just declaring it yourself is good > enough? If not, they get called by fsetpos()/fgetpos() (which _do_ > interact correctly with the buffering in stdio streams), except when...
2001 Nov 16
0
Getting Groupwise to run setup.exe
...1 trace:module:MODULE_DllProcessAttach (ntdll.dll,0x1) - END trace:module:MODULE_InitDLL (wine,PROCESS_ATTACH,0x1) - CALL trace:module:MODULE_InitDLL (0x40381e20,PROCESS_ATTACH,0x1) - RETURN 1 trace:module:MODULE_DllProcessAttach (wine,0x1) - END trace:module:GetModuleHandle16 (USER.EXE) trace:file:SetFilePointer handle 20 offset 0 high 0 origin 0 trace:file:ReadFile 20 0x405e6cf8 64 0x405e6c44 (nil) trace:file:SetFilePointer handle 20 offset 3584 high 0 origin 0 trace:file:ReadFile 20 0x405e6cb8 64 0x405e6c44 (nil) trace:module:NE_LoadExeHeader Using fast-load area offset=fc0 len=39136 trace:file:SetFile...
2013 May 05
0
Bug fix and compatibility patches for 1.3.0pre4
JonY wrote: > How about just forgetting about base XP and require at least SP2 or some > such? Alternatively, use win32api underneath instead, eg > CreateFileW/SetFilePointer. This requires replacing _all_ of the FILE I/O, not just these two functions, which is a lot more work to no clear advantage. The _lseeki64 implementation uses SetFilePointer internally, but doing that directly without changing everything else has the same problems using _lseeki64 does. >...
2002 Oct 24
1
crash report (PR#2207)
...0781 77D50D7F 014215B8 00000000 40421080 ntdll!ZwReplyWaitReceivePortEx 126EFFA8 77D50C7A 01420690 126EFFEC 77E8758A 014214D8 rpcrt4!RpcBindingSetOption 126EFFB4 77E8758A 014214D8 00000000 40421080 014214D8 rpcrt4!RpcBindingSetOption 126EFFEC 00000000 00000000 00000000 00000000 00000000 kernel32!SetFilePointer State Dump for Thread Id 0x558 eax=0000000a ebx=00000000 ecx=00000008 edx=00000000 esi=77f827dd edi=000000d4 eip=77f827e8 esp=128eff2c ebp=128eff50 iopl=0 nv up ei pl zr na po nc cs=001b ss=0023 ds=0023 es=0023 fs=0038 gs=0000 efl=00000246 function: NtWaitForSingleOb...
2007 Oct 04
0
Prototyping the Dir class
...see what techniques anyone else comes up with. The other issue is how to design Dir.new. I thought the smart thing to do would be to store the handle returned by FindFirstFile(), but then I realized that the handle returned by FindFirstFile() isn''t compatible with the handle used for SetFilePointer(), which would make seek/tell difficult to implement. On the other hand, if we use CreateFile(), its handle is not compatible with FindFirstFile() or FindNextFile(), making read/each difficult to implement. I make two refactoring decisions for now - Dir.foreach has been skipped. The Dir.entr...
2010 Jan 15
3
wine and network files sharing
...cal network: one computer acts as server and stores the physical archive files and all clients connect to that server with samba for directly reading and writing archive files in multiple access. For file managing the application uses the Windows API: CreateFile, CloseHandle, LockFile, UnlockFile, SetFilePointer, ReadFile, WriteFile, FlushFileBuffers. We tried to run this application by Windows and wine 1.0.1 on some linux (fedora e ubuntu) and macosx clients and we got data corruption. We noted that wine caches data locally and overrides data updated by other clients. We dislike this behaviour very muc...
2001 Oct 15
1
Crash of RGui under Windows 2000 (PR#1131)
...0781 77D50D7F 002416D8 00000000 402411D8 ntdll!ZwReplyWaitReceivePortEx 111AFFA8 77D50C7A 00240548 111AFFEC 77E8758A 00241808 rpcrt4!RpcBindingSetOption 111AFFB4 77E8758A 00241808 00000000 402411D8 00241808 rpcrt4!RpcBindingSetOption 111AFFEC 00000000 00000000 00000000 00000000 00000000 kernel32!SetFilePointer -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@...
2014 Jun 27
0
Wine release 1.7.21
...o be installed on this PC' (needs IWMPCore::get_versionInfo) 36717 DeltaCad 8.0 crashes when trying to set printer or print 36722 dmusic/tests/dmusic.c crashes under WINEDEBUG=warn+heap 36736 Tucows Download Manager 2014 crashes on startup (decryption scheme relies on 'kernel32.dll.SetFilePointer' hotpatch signature) 36737 Multiple Graviteam tank simulation games crash on start with built-in msvcr80 (small-block heap support needed) 36745 Wine broken on FreeBSD+NFS 36749 WinLaunch 0.4.6.1 (OSX Style free Launcher) fails to save theme (libpng png_write_end fails with 'No I...
2013 May 06
2
flac-dev Digest, Vol 102, Issue 7
...Mon, 06 May 2013 01:21:56 +0200 > Subject: Re: [flac-dev] Bug fix and compatibility patches for 1.3.0pre4 > JonY wrote: > >> How about just forgetting about base XP and require at least SP2 or some >> such? Alternatively, use win32api underneath instead, eg >> CreateFileW/SetFilePointer. >> > Even SP2 and SP3 do not have fseeki64/ftelli64. Using Windows API > functions would probably be the cleanest solution, but on the other hand > require wrappers for all file IO functions. I guess that would be too big > of a change to make it into 1.3.0 at this point. >...
2006 May 11
9
world of warcraft doesnÄt work (sorry if double post)
if this is a doublepost please sorry bur the first post was blocked by spamfilter because of wrong timesettings on my local computer. i reaplyed to my original post and now im not shure if the mailserver thinks the message is corrupt because of reply to a non existing message. here is the originalmessage (again?) Hi everyone, thirst of all please forgive my bad english :) i have installed wine
2013 May 07
0
flac-dev Digest, Vol 102, Issue 7
...ubject: Re: [flac-dev] Bug fix and compatibility patches for > 1.3.0pre4 > JonY wrote: > > How about just forgetting about base XP and require at least > SP2 or some > such? Alternatively, use win32api underneath instead, eg > CreateFileW/SetFilePointer. > > Even SP2 and SP3 do not have fseeki64/ftelli64. Using Windows API > functions would probably be the cleanest solution, but on the > other hand require wrappers for all file IO functions. I guess > that would be too big of a change to make it into 1.3.0 at this...
2002 Nov 14
0
WIN 3.1 App crashes.. Unhandled Exception
...03, create=3, attrs=00000000, drive_type=3, filename="/var/lib/wine/drivec/Program Files/Atwin/Atwin.exe" ) 0820ac28: create_file() = 0 { handle=0x70 } 0820ac28:trace:file:CreateFileW returning 00000070 0820ac28:trace:file:Win32HandleToDosFileHandle Got 6 for h32 112 0820ac28:trace:file:SetFilePointer handle 112 offset 397824 high 0 origin 0 0820ac28: set_file_pointer( handle=0x70, low=397824, high=0, whence=0 ) 0820ac28: set_file_pointer() = 0 { new_low=397824, new_high=0 } 0820ac28:trace:global:GlobalHandle16 0137 0820ac28:Ret KERNEL.64: ACCESSRESOURCE() retval=0006 ret=051f:0584 ds=02a7 08...
2013 May 04
5
Bug fix and compatibility patches for 1.3.0pre4
Hi all, I tried 1.3.0pre4 with ICL on Windows and found some issues. Not sure if this is the right place to submit patches, but someone suggested this on the apparently dead SourceForge patch tracker. The first two are quite straight forward: - The ICL patch fixes a typo in bitmath.h and adds FLAC__bitwriter_write_zeroes to the external declarations in bitwriter.c. - The Ogg patch replaces
2004 May 28
2
Problem with ADO connection
Hi, First a big Thank You to the wine developers. Your efforts are greatly appreciated and have allowed me to move users to Linux that I could never have moved otherwise. I am currently setting up desktops for 7 end users, but doing so requires that I get a particular application (The Electronic Manual) which is a parts catalog for the restaurant equipment service industry. The application