1
10
13
14
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
94
95
96
97
98
99
106
107
108
115
116
117
118
119
120
121
122
...
...
...
#define FX_SOURCE_CODE
#include "fx_api.h"
#include "fx_unicode.h"
FX_CALLER_CHECKING_EXTERNS
...
...
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 status, i;
if ((media_ptr == FX_NULL) || (old_unicode_name == FX_NULL) || (old_unicode_length == 0) ||
(new_unicode_name == FX_NULL) || (new_unicode_length == 0) || (new_short_name == FX_NULL))
{
return(FX_PTR_ERROR);
}if ((media_ptr == FX_NULL) || (old_unicode_name == FX_NULL) || (old_unicode_length == 0) || (new_unicode_name == FX_NULL) || (new_unicode_length == 0) || (new_short_name == FX_NULL)) { ... }
FX_CALLER_CHECKING_CODE
for (i = 0; i < (old_unicode_length << 1); i += 2)
{
if ((old_unicode_name[i] == 0) && (old_unicode_name[i + 1] == 0))
{
return(FX_INVALID_NAME);
}if ((old_unicode_name[i] == 0) && (old_unicode_name[i + 1] == 0)) { ... }
}for (i = 0; i < (old_unicode_length << 1); i += 2) { ... }
for (i = 0; i < (new_unicode_length << 1); i += 2)
{
if ((new_unicode_name[i] == 0) && (new_unicode_name[i + 1] == 0))
{
return(FX_INVALID_NAME);
}if ((new_unicode_name[i] == 0) && (new_unicode_name[i + 1] == 0)) { ... }
}for (i = 0; i < (new_unicode_length << 1); i += 2) { ... }
status = _fx_unicode_directory_rename(media_ptr, old_unicode_name, old_unicode_length, new_unicode_name, new_unicode_length, new_short_name);
return(status);
}{ ... }