Only for __VBCC__ as far as I can see.salass00 wrote:In fact this is its definition from SDK/newlib/include/stddef.h:Code: Select all
typedef int wchar_t;
Search found 102 matches
- Thu Mar 13, 2014 2:26 pm
- Forum: General AmigaOS
- Topic: filesysbox ntfs ubs massStorage problem
- Replies: 76
- Views: 19569
Re: filesysbox ntfs ubs massStorage problem
- Tue Mar 11, 2014 1:17 pm
- Forum: General AmigaOS
- Topic: filesysbox ntfs ubs massStorage problem
- Replies: 76
- Views: 19569
Re: filesysbox ntfs ubs massStorage problem
... Given that I'm only interested in one mapping table (ISO-8859-15) ... I still think you should use the local charset for filesystems that can handle UTF-8/16/32 or whatever. from the autodocs of locale.doc: ... When passing a NULL name parameter to this function, you are guaranteed a valid retu...
- Sat Mar 08, 2014 10:43 pm
- Forum: Localization
- Topic: .ct file version string
- Replies: 9
- Views: 17345
Re: .ct file version string
@trixie
You can't build a catalog without an .cd file. The ids are only stored in the descriptor file not in the translation file.
[deleted]see jörgs description below[/deleted]
You can't build a catalog without an .cd file. The ids are only stored in the descriptor file not in the translation file.
[deleted]see jörgs description below[/deleted]
- Wed Mar 05, 2014 8:51 pm
- Forum: General AmigaOS
- Topic: Failed to open printer.device (possible SOLVED!)
- Replies: 7
- Views: 2403
Re: Failed to open printer.device
Just rename the prefs file for the printer.
Code: Select all
rename ENVARC:Sys/printer.prefs ENVARC:Sys/printer.prefs.off
rename ENV:Sys/printer.prefs ENV:Sys/printer.prefs.off
- Mon Feb 24, 2014 9:50 am
- Forum: General Developer Support
- Topic: [ANSWER = "No"] Share CHOOSER_Labels list?
- Replies: 6
- Views: 3615
Re: [ANSWERED] Share CHOOSER_Labels list?
That's what I feared, but it worked so well. Ok, time to restructure my code than.ssolie wrote:Objects (lists, etc.) that you pass control over to a BOOPSI object should never be shared unless explicitly written otherwise. You are just asking for trouble.
- Sun Feb 23, 2014 11:07 pm
- Forum: General Developer Support
- Topic: [ANSWER = "No"] Share CHOOSER_Labels list?
- Replies: 6
- Views: 3615
Re: [ANSWERED] Share CHOOSER_Labels list?
Thanks again. I can confirm that it works, no reaper so far (and I'm doing it since some days).
- Sun Feb 23, 2014 10:35 pm
- Forum: General AmigaOS
- Topic: filesysbox ntfs ubs massStorage problem
- Replies: 76
- Views: 19569
Re: filesysbox ntfs ubs massStorage problem
File names returned from filesystems should always be ISO-8859-1 or ISO-8859-15. Thats interesting, because I just did a small test with my RAM, SFS2 and JXF4 and all of them are happily using whatever charset your locale is for the filenames. If you change it on the fly so do your filenames (if th...
- Sun Feb 23, 2014 10:30 pm
- Forum: General Developer Support
- Topic: [ANSWER = "No"] Share CHOOSER_Labels list?
- Replies: 6
- Views: 3615
Re: Share CHOOSER_Labels list?
Ok, thanks.
What about the real question to share the list for different choosers?
What about the real question to share the list for different choosers?
- Sun Feb 23, 2014 10:04 pm
- Forum: General AmigaOS
- Topic: filesysbox ntfs ubs massStorage problem
- Replies: 76
- Views: 19569
Re: filesysbox ntfs ubs massStorage problem
It's pretty easy to convert between an 8bit charset and unicode with IDiskfont->ObtainCharsetInfo() and the DFCS_MAPTABLE.
- Sun Feb 23, 2014 9:24 pm
- Forum: General Developer Support
- Topic: [ANSWER = "No"] Share CHOOSER_Labels list?
- Replies: 6
- Views: 3615
[ANSWER = "No"] Share CHOOSER_Labels list?
Is it allowed to share a labellist for choosers? I didn't find anything in the docs. It works so far. There also seems to be a bug with freeing the allocated nodes. According to the autodocs, the nodes should be freed on disposal. CHOOSER_Labels (struct List *) List of labels. Each node must be allo...