Select one of the symbols to view example projects that use it.
 
Outline
...
...
...
...
...
...
#define FX_UNICODE_H
_fx_unicode_temp_long_file_name;
_fx_unicode_search_name;
_fx_unicode_directory_create(FX_MEDIA *, UCHAR *, ULONG, CHAR *);
_fx_unicode_directory_rename(FX_MEDIA *, UCHAR *, ULONG, UCHAR *, ULONG, CHAR *);
_fx_unicode_file_create(FX_MEDIA *, UCHAR *, ULONG, CHAR *);
_fx_unicode_length_get(UCHAR *);
_fx_unicode_length_get_extended(UCHAR *, UINT);
_fx_unicode_name_get(FX_MEDIA *, CHAR *, UCHAR *, ULONG *);
_fx_unicode_name_get_extended(FX_MEDIA *, CHAR *, UCHAR *, ULONG *, ULONG);
_fx_unicode_file_rename(FX_MEDIA *, UCHAR *, ULONG, UCHAR *, ULONG, CHAR *);
_fx_unicode_short_name_get(FX_MEDIA *, UCHAR *, ULONG, CHAR *);
_fx_unicode_short_name_get_extended(FX_MEDIA *, UCHAR *, ULONG, CHAR *, ULONG);
_fxe_unicode_directory_create(FX_MEDIA *, UCHAR *, ULONG, CHAR *);
_fxe_unicode_directory_rename(FX_MEDIA *, UCHAR *, ULONG, UCHAR *, ULONG, CHAR *);
_fxe_unicode_file_create(FX_MEDIA *, UCHAR *, ULONG, CHAR *);
_fxe_unicode_file_rename(FX_MEDIA *, UCHAR *, ULONG, UCHAR *, ULONG, CHAR *);
_fxe_unicode_name_get(FX_MEDIA *, CHAR *, UCHAR *, ULONG *);
_fxe_unicode_name_get_extended(FX_MEDIA *, CHAR *, UCHAR *, ULONG *, ULONG);
_fxe_unicode_short_name_get(FX_MEDIA *, UCHAR *, ULONG, CHAR *);
_fxe_unicode_short_name_get_extended(FX_MEDIA *, UCHAR *, ULONG, CHAR *, ULONG);
_fx_unicode_directory_search(FX_MEDIA *, FX_DIR_ENTRY *, UCHAR *, ULONG, UCHAR *, ULONG *, ULONG);
_fx_unicode_directory_entry_read(FX_MEDIA *, FX_DIR_ENTRY *, ULONG *, FX_DIR_ENTRY *, UCHAR *, ULONG *);
_fx_unicode_directory_entry_change(FX_MEDIA *, FX_DIR_ENTRY *, UCHAR *, ULONG);
Files
loading...
SourceVuSTM32 Libraries and Samplesfilexcommon/inc/fx_unicode.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */... /**************************************************************************/ ... /**************************************************************************/ /**************************************************************************/ /** */ /** FileX Component */ /** */ /** Unicode */ /** */... /**************************************************************************/ /**************************************************************************/ ... /**************************************************************************/ /* */ /* COMPONENT DEFINITION RELEASE */ /* */ /* fx_unicode.h PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This file defines the FileX Unicode component constants, data */ /* definitions, and external references. It is assumed that fx_api.h */ /* (and fx_port.h) have already been included. */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 William E. Lamie Initial Version 6.0 */ /* 09-30-2020 William E. Lamie Modified comment(s), */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ #ifndef FX_UNICODE_H #define FX_UNICODE_H /* Define external data for the Unicode component. */ extern UCHAR _fx_unicode_temp_long_file_name[FX_MAX_LONG_NAME_LEN]; extern UCHAR _fx_unicode_search_name[FX_MAX_LONG_NAME_LEN * 2]; /* Define the external Unicode component function prototypes. */ UINT _fx_unicode_directory_create(FX_MEDIA *media_ptr, UCHAR *source_unicode_name, ULONG source_unicode_length, CHAR *short_name); UINT _fx_unicode_directory_rename(FX_MEDIA *media_ptr, UCHAR *old_unicode_name, ULONG old_unicode_length, UCHAR *new_unicode_name, ULONG new_unicode_length, CHAR *new_short_name); UINT _fx_unicode_file_create(FX_MEDIA *media_ptr, UCHAR *source_unicode_name, ULONG source_unicode_length, CHAR *short_name); ULONG _fx_unicode_length_get(UCHAR *unicode_name); ULONG _fx_unicode_length_get_extended(UCHAR *unicode_name, UINT buffer_length); UINT _fx_unicode_name_get(FX_MEDIA *media_ptr, CHAR *source_short_name, UCHAR *destination_unicode_name, ULONG *destination_unicode_length); UINT _fx_unicode_name_get_extended(FX_MEDIA *media_ptr, CHAR *source_short_name, UCHAR *destination_unicode_name, ULONG *destination_unicode_length, ULONG unicode_name_buffer_length); UINT _fx_unicode_file_rename(FX_MEDIA *media_ptr, UCHAR *old_unicode_name, ULONG old_unicode_length, UCHAR *new_unicode_name, ULONG new_unicode_length, CHAR *new_short_name); UINT _fx_unicode_short_name_get(FX_MEDIA *media_ptr, UCHAR *source_unicode_name, ULONG source_unicode_length, CHAR *destination_short_name); UINT _fx_unicode_short_name_get_extended(FX_MEDIA *media_ptr, UCHAR *source_unicode_name, ULONG source_unicode_length, CHAR *destination_short_name, ULONG short_name_buffer_length); UINT _fxe_unicode_directory_create(FX_MEDIA *media_ptr, UCHAR *source_unicode_name, ULONG source_unicode_length, CHAR *short_name); UINT _fxe_unicode_directory_rename(FX_MEDIA *media_ptr, UCHAR *old_unicode_name, ULONG old_unicode_length, UCHAR *new_unicode_name, ULONG new_unicode_length, CHAR *new_short_name); UINT _fxe_unicode_file_create(FX_MEDIA *media_ptr, UCHAR *source_unicode_name, ULONG source_unicode_length, CHAR *short_name); UINT _fxe_unicode_file_rename(FX_MEDIA *media_ptr, UCHAR *old_unicode_name, ULONG old_unicode_length, UCHAR *new_unicode_name, ULONG new_unicode_length, CHAR *new_short_name); UINT _fxe_unicode_name_get(FX_MEDIA *media_ptr, CHAR *source_short_name, UCHAR *destination_unicode_name, ULONG *destination_unicode_length); UINT _fxe_unicode_name_get_extended(FX_MEDIA *media_ptr, CHAR *source_short_name, UCHAR *destination_unicode_name, ULONG *destination_unicode_length, ULONG unicode_name_buffer_length); UINT _fxe_unicode_short_name_get(FX_MEDIA *media_ptr, UCHAR *source_unicode_name, ULONG source_unicode_length, CHAR *destination_short_name); UINT _fxe_unicode_short_name_get_extended(FX_MEDIA *media_ptr, UCHAR *source_unicode_name, ULONG source_unicode_length, CHAR *destination_short_name, ULONG short_name_buffer_length); /* Define the internal Unicode component function prototypes. */ UINT _fx_unicode_directory_search(FX_MEDIA *media_ptr, FX_DIR_ENTRY *entry_ptr, UCHAR *short_name, ULONG short_name_buffer_length, UCHAR *unicode_name, ULONG *unicode_name_length, ULONG unicode_name_buffer_length); UINT _fx_unicode_directory_entry_read(FX_MEDIA *media_ptr, FX_DIR_ENTRY *source_dir, ULONG *entry_ptr, FX_DIR_ENTRY *destination_ptr, UCHAR *unicode_name, ULONG *unicode_size); UINT _fx_unicode_directory_entry_change(FX_MEDIA *media_ptr, FX_DIR_ENTRY *entry_ptr, UCHAR *unicode_name, ULONG unicode_name_length); /* ... */ #endif...
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.