search for: _wfullpath

Displaying 13 results from an estimated 13 matches for "_wfullpath".

Did you mean: _fullpath
2011 Sep 27
3
[LLVMdev] [cfe-dev] Unicode path handling on Windows
...bout recognizing whether two paths are the same on Windows you also need to call GetFullPathName in order to expand any 8.3 path components, but this is an expensive function so I wouldn't do it unless absolutely necessary. There is also a call to _fullpath in there that needs to be changed to _wfullpath. The rest of the patch looks good. On Sep 23, 2011, at 9:57 AM, Nikola Smiljanic wrote: > Here's a new patch that fixes all the issues mentioned before. Note that this isn't final, I didn't want to replace all calls to ::stat so that it's easier to review. > > I have on...
2011 Sep 29
2
[LLVMdev] [cfe-dev] Unicode path handling on Windows
...nizing whether two paths are the same on Windows you also need to call GetFullPathName in order to expand any 8.3 path components, but this is an expensive function so I wouldn't do it unless absolutely necessary. > > There is also a call to _fullpath in there that needs to be changed to _wfullpath. > > The rest of the patch looks good. > > On Sep 23, 2011, at 9:57 AM, Nikola Smiljanic wrote: > >> Here's a new patch that fixes all the issues mentioned before. Note that this isn't final, I didn't want to replace all calls to ::stat so that it's easier to...
2011 Sep 29
0
[LLVMdev] [cfe-dev] Unicode path handling on Windows
...paths are the same > on Windows you also need to call GetFullPathName in order to expand any 8.3 > path components, but this is an expensive function so I wouldn't do it > unless absolutely necessary. > > There is also a call to _fullpath in there that needs to be changed to > _wfullpath. > > The rest of the patch looks good. > > On Sep 23, 2011, at 9:57 AM, Nikola Smiljanic wrote: > > Here's a new patch that fixes all the issues mentioned before. Note that > this isn't final, I didn't want to replace all calls to ::stat so that it's > easier...
2011 Sep 30
2
[LLVMdev] [cfe-dev] Unicode path handling on Windows
...hether two paths are the same on Windows you also need to call GetFullPathName in order to expand any 8.3 path components, but this is an expensive function so I wouldn't do it unless absolutely necessary. >> >> There is also a call to _fullpath in there that needs to be changed to _wfullpath. >> >> The rest of the patch looks good. >> >> On Sep 23, 2011, at 9:57 AM, Nikola Smiljanic wrote: >> >>> Here's a new patch that fixes all the issues mentioned before. Note that this isn't final, I didn't want to replace all calls to ::stat so...
2011 Sep 30
0
[LLVMdev] [cfe-dev] Unicode path handling on Windows
...ame on Windows you also need to call GetFullPathName in order to expand any >> 8.3 path components, but this is an expensive function so I wouldn't do it >> unless absolutely necessary. >> >> There is also a call to _fullpath in there that needs to be changed to >> _wfullpath. >> >> The rest of the patch looks good. >> >> On Sep 23, 2011, at 9:57 AM, Nikola Smiljanic wrote: >> >> Here's a new patch that fixes all the issues mentioned before. Note that >> this isn't final, I didn't want to replace all calls to ::stat...
2011 Oct 03
0
[LLVMdev] [cfe-dev] Unicode path handling on Windows
...lso need to call GetFullPathName in order to expand any >>> 8.3 path components, but this is an expensive function so I wouldn't do it >>> unless absolutely necessary. >>> >>> There is also a call to _fullpath in there that needs to be changed to >>> _wfullpath. >>> >>> The rest of the patch looks good. >>> >>> On Sep 23, 2011, at 9:57 AM, Nikola Smiljanic wrote: >>> >>> Here's a new patch that fixes all the issues mentioned before. Note that >>> this isn't final, I didn't want to...
2011 Oct 03
5
[LLVMdev] [cfe-dev] Unicode path handling on Windows
...wo paths are the same on Windows you also need to call GetFullPathName in order to expand any 8.3 path components, but this is an expensive function so I wouldn't do it unless absolutely necessary. >>> >>> There is also a call to _fullpath in there that needs to be changed to _wfullpath. >>> >>> The rest of the patch looks good. >>> >>> On Sep 23, 2011, at 9:57 AM, Nikola Smiljanic wrote: >>> >>>> Here's a new patch that fixes all the issues mentioned before. Note that this isn't final, I didn't want to replac...
2011 Oct 03
0
[LLVMdev] [cfe-dev] Unicode path handling on Windows
...FullPathName in order to expand any >>>> 8.3 path components, but this is an expensive function so I wouldn't do it >>>> unless absolutely necessary. >>>> >>>> There is also a call to _fullpath in there that needs to be changed to >>>> _wfullpath. >>>> >>>> The rest of the patch looks good. >>>> >>>> On Sep 23, 2011, at 9:57 AM, Nikola Smiljanic wrote: >>>> >>>> Here's a new patch that fixes all the issues mentioned before. Note that >>>> this isn't...
2003 Jun 20
2
winword2000 has pipe problems
High dears, I just do my first step on wine on SuSE8.2 and Wine 20030508, installed from new rpm for SuSE. First I have installed the Office2000 with that command: Office2000 Prem> wine --dll cabinet=n --debugmsg +loaddll setup.exe hat it seems to be work: I have got the messages "restart your Computer". After that I start wine notepad only to see if wine is still working
2011 Sep 30
0
[LLVMdev] [cfe-dev] Unicode path handling on Windows
...ame on Windows you also need to call GetFullPathName in order to expand any >> 8.3 path components, but this is an expensive function so I wouldn't do it >> unless absolutely necessary. >> >> There is also a call to _fullpath in there that needs to be changed to >> _wfullpath. >> >> The rest of the patch looks good. >> >> On Sep 23, 2011, at 9:57 AM, Nikola Smiljanic wrote: >> >> Here's a new patch that fixes all the issues mentioned before. Note that >> this isn't final, I didn't want to replace all calls to ::stat...
2011 Sep 23
0
[LLVMdev] [cfe-dev] Unicode path handling on Windows
Here's a new patch that fixes all the issues mentioned before. Note that this isn't final, I didn't want to replace all calls to ::stat so that it's easier to review. I have only one more questions: 1. _wopen accepts _stat64i32 instead of stat structure. These two are exactly the same, the only difference is that stat uses time_t and _stat64i32 uses __time64_t (time_t is a
2011 Sep 20
2
[LLVMdev] [cfe-dev] Unicode path handling on Windows
On Tue, Sep 20, 2011 at 4:15 PM, Nikola Smiljanic <popizdeh at gmail.com> wrote: > OK since this approach makes sense I'll shoot with my questions :) > 1. Where should get_utf8_argv go and is the name of this function OK? Right > now the function is inside llvm::sys::fs namespace because I need access to > Windows.h, should I leave it there. I don't think it belongs
2011 Oct 03
2
[LLVMdev] [cfe-dev] Unicode path handling on Windows
...are the same on Windows you also need to call GetFullPathName in order to expand any 8.3 path components, but this is an expensive function so I wouldn't do it unless absolutely necessary. >>>> >>>> There is also a call to _fullpath in there that needs to be changed to _wfullpath. >>>> >>>> The rest of the patch looks good. >>>> >>>> On Sep 23, 2011, at 9:57 AM, Nikola Smiljanic wrote: >>>> >>>>> Here's a new patch that fixes all the issues mentioned before. Note that this isn't final, I d...