genericopenlibs/openenvcore/include/wchar.h
branchRCL_3
changeset 10 3a3c1a7fa1e8
parent 0 e4d67989cc36
child 33 6896b031c3e1
child 45 4b03adbd26ca
equal deleted inserted replaced
9:fa985af77159 10:3a3c1a7fa1e8
   335 #define _A_ARCH   0x0020		//Archive. Set whenever the file is changed and cleared by the BACKUP command. Value: 0x20.
   335 #define _A_ARCH   0x0020		//Archive. Set whenever the file is changed and cleared by the BACKUP command. Value: 0x20.
   336 #define _A_HIDDEN 0x0002 		//Hidden file. Not normally seen with the DIR command, unless the /AH option is used. Returns information about normal files and files with this attribute. Value: 0x02.
   336 #define _A_HIDDEN 0x0002 		//Hidden file. Not normally seen with the DIR command, unless the /AH option is used. Returns information about normal files and files with this attribute. Value: 0x02.
   337 #define _A_NORMAL 0x0000	//Normal. File has no other attributes set and can be read or written to without restriction. Value: 0x00.
   337 #define _A_NORMAL 0x0000	//Normal. File has no other attributes set and can be read or written to without restriction. Value: 0x00.
   338 #define _A_RDONLY 0x0001		//Read-only. File cannot be opened for writing and a file with the same name cannot be created. Value: 0x01.
   338 #define _A_RDONLY 0x0001		//Read-only. File cannot be opened for writing and a file with the same name cannot be created. Value: 0x01.
   339 #define _A_SYSTEM  0x0004		//System file. Not normally seen with the DIR command, unless the /A or /A:S option is used
   339 #define _A_SYSTEM  0x0004		//System file. Not normally seen with the DIR command, unless the /A or /A:S option is used
       
   340 #define _A_SUBDIR 0x0010        // Subdirectory.        
   340 
   341 
   341 IMPORT_C size_t	wcslcat(wchar_t *, const wchar_t *, size_t);
   342 IMPORT_C size_t	wcslcat(wchar_t *, const wchar_t *, size_t);
   342 IMPORT_C size_t	 wcslcpy(wchar_t *, const wchar_t *, size_t);
   343 IMPORT_C size_t	 wcslcpy(wchar_t *, const wchar_t *, size_t);
   343 IMPORT_C wchar_t *wasctime(const struct tm *);
   344 IMPORT_C wchar_t *wasctime(const struct tm *);
   344 IMPORT_C wchar_t *wctime(const time_t *);
   345 IMPORT_C wchar_t *wctime(const time_t *);