search for: _wfopen

Displaying 9 results from an estimated 9 matches for "_wfopen".

Did you mean: _fopen
2013 Mar 05
3
Answering the Hydrogen Audio thread
There is a thread over on Hydrogen Audio forums: http://www.hydrogenaudio.org/forums/index.php?showtopic=99757 I will answer what I can here. > mudlord says : > As usual, Fidel Castro Loco ignored Windows. Wrong. As the git logs show, I have commited a bunch of windows specific fixes myself as well as commiting windows fixes by others. > zfox > My own Linux build could not
2005 Dec 12
0
Real time in ARM - please help
.../ ********************************** Program Statements **********************************// Speex[0] = 'S'; Speex[1] = 'p'; Speex[2] = 'e'; Speex[3] = 'e'; Speex[4] = 'x'; state = speex_encoder_init (&speex_nb_mode); fout = _wfopen ((LPCTSTR)FileSave, L"wb"); if (fout == NULL) { return 1; } fin = _wfopen ((LPCTSTR) FileOpen, L"rb"); if (fin == NULL) { return 2; } switch (BitRateChoice) { case '1': BitRate = 6000;...
2013 Mar 05
3
Answering the Hydrogen Audio thread
...Unicode support (and large file > mode) to the flac binary tool, but frankly I'm not sure that it could > be done as a single cross-platform source file. There would be a > significant amount of either Windows API function calls or > MSVC-specific extensions to the C library (like _wfopen). It would > quickly devolve into an #ifdef _MSC_VER mess. > > >> ktf said: > >> No unicode support for Windows either. > > > > Somebody that knows about windows unicode needs to work on this and > > supply a patch. I'm happy to help out with guidance...
2013 Mar 05
0
Answering the Hydrogen Audio thread
...lling to add Windows Unicode support (and large file mode) to the flac binary tool, but frankly I'm not sure that it could be done as a single cross-platform source file. There would be a significant amount of either Windows API function calls or MSVC-specific extensions to the C library (like _wfopen). It would quickly devolve into an #ifdef _MSC_VER mess. >> ktf said: >> No unicode support for Windows either. > > Somebody that knows about windows unicode needs to work on this and > supply a patch. I'm happy to help out with guidance and testing.
2013 Mar 05
0
Answering the Hydrogen Audio thread
...(and large file >> mode) to the flac binary tool, but frankly I'm not sure that it could >> be done as a single cross-platform source file. There would be a >> significant amount of either Windows API function calls or >> MSVC-specific extensions to the C library (like _wfopen). It would >> quickly devolve into an #ifdef _MSC_VER mess. >> >> >> ktf said: >> >> No unicode support for Windows either. >> > >> > Somebody that knows about windows unicode needs to work on this and >> > supply a patch. I'm happ...
2013 Mar 06
2
Answering the Hydrogen Audio thread
...code support (and large file > mode) to the flac binary tool, but frankly I'm not sure that it > could be done as a single cross-platform source file. There would > be a significant amount of either Windows API function calls or > MSVC-specific extensions to the C library (like _wfopen). It > would quickly devolve into an #ifdef _MSC_VER mess. > >>> ktf said: No unicode support for Windows either. >> >> Somebody that knows about windows unicode needs to work on this >> and supply a patch. I'm happy to help out with guidance and >> t...
2010 Aug 23
1
[Bug] [Urgent] CreateProcess Failed internal error (1359)
...//////////////////////////////////////////////////////////////////////////// int wmain(int argc, wchar_t *argv[]) { int arg = 0; if(argc > 1) { arg = _wtoi(argv[1]); } HANDLE hands[255]; wchar_t buff[255]; swprintf(buff,255,L"Test_%s_%s.log",argv[1],argv[2]); FILE * fil = _wfopen(buff,L"w"); fwprintf(fil,L"Start %d\n",arg); fflush(fil); printf( "Start %d\n",arg); if(arg >= 7) { printf( "End chain\n"); return Quit(0); } int max = 2; if(arg > 0) { max = 2; } for(int i = 0; i < max; i++) { wchar_t buf...
2010 Jan 06
2
FLAC C API / Visual Studio 2008 FILE* Issue
On 1/6/2010 18:53, Stuart Fisher wrote: > I haven't done any FLAC development for some time now, but I've around 25 years experience of working with libc and I don't really agree with Ben's view. > > You're talking about a binary compatibility issue and I'd be surprised if Microsoft had changed something in the library to break it. OS companies usually only break
2012 Mar 13
0
111 FIXMEs in main/src
...ert to UTF-8 on Windows */ platform.c- for (i = 0; i < n; i++) { -- platform.c: /* FIXME: there are higher-resolution ways to do this on Windows */ platform.c- REAL(mtime)[i] = (double) sb.st_mtime; -- platform.c: if (over || !R_WFileExists(dest)) { /* FIXME */ platform.c- if ((fp1 = _wfopen(this, L"rb")) == NULL || -- platform.c: /* FIXME: perhaps manipulate mode as we do in Sys.chmod? */ platform.c- if(perms) _wchmod(dest, sb.st_mode & 0777); -- plot3d.c:/* FIXME - This could pretty easily be adapted to handle NA */ plot3d.c-/* values on the grid. Just search the diago...