1
10
13
14
20
21
22
23
24
25
26
27
28
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
89
90
91
92
98
99
100
105
106
107
108
114
121
122
123
124
125
126
127
128
129
...
...
...
#define FX_SOURCE_CODE
#include "fx_api.h"
#include "fx_system.h"
#include "fx_file.h"
#include "fx_utility.h"
#include "fx_directory.h"
5 includes
#ifndef FX_NO_LOCAL_PATH
FX_LOCAL_PATH_SETUP
#endif
...
...
UINT _fx_directory_local_path_get(FX_MEDIA *media_ptr, CHAR **return_path_name)
{
#ifndef FX_MEDIA_STATISTICS_DISABLE
media_ptr -> fx_media_directory_local_path_gets++;/* ... */
#endif
if (media_ptr -> fx_media_id != FX_MEDIA_ID)
{
return(FX_MEDIA_NOT_OPEN);
}if (media_ptr -> fx_media_id != FX_MEDIA_ID) { ... }
#ifdef FX_NO_LOCAL_PATH
FX_PARAMETER_NOT_USED(return_path_name);
return(FX_NOT_IMPLEMENTED);/* ... */
#else
if (_tx_thread_current_ptr -> tx_thread_filex_ptr)
{
*return_path_name = ((FX_LOCAL_PATH *)_tx_thread_current_ptr -> tx_thread_filex_ptr) -> fx_path_string;
}if (_tx_thread_current_ptr -> tx_thread_filex_ptr) { ... }
else
{
/* ... */
*return_path_name = FX_NULL;
}else { ... }
FX_TRACE_IN_LINE_INSERT(FX_TRACE_DIRECTORY_LOCAL_PATH_GET, media_ptr, return_path_name, 0, 0, FX_TRACE_DIRECTORY_EVENTS, 0, 0)
return(FX_SUCCESS);/* ... */
#endif
}{ ... }