diff options
author | Javier <dev.git@javispedro.com> | 2022-06-12 19:06:31 +0200 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2022-06-12 19:06:31 +0200 |
commit | fbf3eb7918b1dc015023708eb6d32e65934a1128 (patch) | |
tree | 13f6113bc54c076eb0cae6a523c0a933c6889fa9 /lfn.h | |
parent | 367db359784ef6a1c9f904e91e51ef61af4a92e9 (diff) | |
download | vbados-fbf3eb7918b1dc015023708eb6d32e65934a1128.tar.gz vbados-fbf3eb7918b1dc015023708eb6d32e65934a1128.zip |
define IN_TSR macro in all tsr files
Diffstat (limited to 'lfn.h')
-rw-r--r-- | lfn.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,7 +31,7 @@ #define MIN_HASH_CHARS 2 #define MAX_HASH_CHARS 6 -#ifdef __IN_SFTSR__ +#ifdef IN_TSR static inline bool translate_filename_from_host(SHFLSTRING *, bool, bool); static bool matches_8_3_wildcard(const char __far *, const char __far *); @@ -438,5 +438,5 @@ static inline uint16_t get_true_host_name(SHFLROOT root, TSRDATAPTR data, uint8_ return get_true_host_name_n(root, data, dst, src, buflen, buflen); } -#endif // __IN_SFTSR__ +#endif // IN_TSR #endif // LFN_H |