search for: copyfilew

Displaying 7 results from an estimated 7 matches for "copyfilew".

Did you mean: copyfile
2011 Aug 17
1
Foxpro File Copying causes Invalid Name warning
...TEMP\\L1_*.*" not found (c0000033) 001b:Ret KERNEL32.GetFileAttributesW() retval=ffffffff ret=7ea9374f 001b:Call KERNEL32.CopyFileW(0034e02c L"Z:\\mnt\\drive_h\\l1vfp0\\L1_ATTN.DBF",0034e234 L"C:\\TEMP\\L1_*.*",00000000) ret=7ea93799 001b:warn:ntdll:FILE_CreateFile L"\\??\\C:\\TEMP\\L1_*.*" not found (c0000033)...
2004 Dec 24
1
[LLVMdev] Undefined referenceto`llvm::sys::CopyFile(llvm::sys::Path const&, llvm::sys::P
But breaks VC++. The problem is, Windows.h defines "CopyFile" as a macro that's either "CopyFileA" or "CopyFileW". Path.h is included before Windows.h, so the declaration has the name "CopyFile" while the definition has "CopyFileA". Instant compilation error. Not sure what the best way to fix it is, but I'll check it in as soon as I figure it out. Reid Spencer wrote: >N...
2008 Sep 10
1
peimg /inf running on wine
...LPBOOL cancelFlagPointer, DWORD copyFlags) { /* * Interpret the only flag that CopyFile can interpret. */ FIXME("src=%s dest=%s prg=0x%08x data=0x%08x flags=0x%08x\n", debugstr_w(sourceFilename), debugstr_w(destFilename), progressRoutine, appData, copyFlags); return CopyFileW(sourceFilename, destFilename, (copyFlags & COPY_FILE_FAIL_IF_EXISTS) != 0); } /********************************************************************************************************** Puhh, well wine doesn't crash any more and the files are really copied but the output of peimg tells me:...
2004 Dec 24
0
[LLVMdev] Undefined referenceto`llvm::sys::CopyFile(llvm::sys::Path const&, llvm::sys::P
No, although its declared in the Path.h file, its actually not in the Path class. Have a look. Not sure why you're still seeing that problem. The same change to Unix/Path.cpp fixed the same problem on Cygwin and Linux. Reid. On Thu, 2004-12-23 at 15:48, Henrik Bach wrote: > Hi Reid, > > The error still exists. However, looking on the function in Win32/Path.cpp: > --------------
2004 Dec 23
3
[LLVMdev] Undefined referenceto`llvm::sys::CopyFile(llvm::sys::Path const&, llvm::sys::P
Hi Reid, The error still exists. However, looking on the function in Win32/Path.cpp: -------------- void sys::CopyFile(const sys::Path &Dest, const sys::Path &Src) { if (!::CopyFile(Src.c_str(), Dest.c_str(), false)) ThrowError("Can't copy '" + Src.toString() + "' to '" + Dest.toString() + "'"); } -------------- I
2012 Jun 08
0
Wine release 1.5.6
...for saving an icon into a stream. gdi32: Fix parameters of some GDI stock fonts. server: Make sure that region and rectangle have the same origin before calling rect_in_region(). windowscodecs: Add a stubbed out IWICMetadataBlockReader to TIFF decoder. kernel32: Print in the CopyFileW trace also fail_if_exists parameter. windowscodecs: Protect from invalid input some metadata handler methods. windowscodecs: Implement MetadataHandler_GetCount. windowscodecs: Add WICIfdMetadataReader stub implementation. windowscodecs: Add WICIfdMetadataReader registration....
2007 Sep 14
0
Wine release 0.9.45
...Process stub. Kirill K. Smirnov (1): winhelp: Add WS_EX_TOOLWINDOW style to popup windows. Lei Zhang (2): riched20: Do not pass NULL lParam to ME_ToUnicode for EM_REPLACESEL. user32: Edit control should respond to ctrl + z. Lionel Debroux (9): kernel32: Fix memory leak in CopyFileW. winex11.drv: Fix memory leak in create_cursor (found by Smatch). ole32: Fix memory leak in compositemoniker.c (found by Smatch). winedump: Fix memory leak in msmangle.c (found by Smatch). dplayx: Fixed memory leak in dplay.c (found by Smatch). regedit: Fixed a memory...