Changeset 3315 for trunk/src/lib/kDep.h
- Timestamp:
- Mar 31, 2020, 3:12:19 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/kDep.h
r3167 r3315 40 40 /** The filename hash. */ 41 41 unsigned uHash; 42 /** Set if needs escaping. */ 43 char fNeedsEscaping; 44 /** Set if filename ends with a slash and may require special processing. */ 45 char fTrailingSlash; 42 46 /** The length of the filename. */ 43 47 size_t cchFilename; … … 58 62 extern PDEP depAdd(PDEPGLOBALS pThis, const char *pszFilename, size_t cchFilename); 59 63 extern void depOptimize(PDEPGLOBALS pThis, int fFixCase, int fQuiet, const char *pszIgnoredExt); 60 extern void depPrint(PDEPGLOBALS pThis, FILE *pOutput); 64 extern int depNeedsEscaping(const char *pszFile, size_t cchFile, int fDependency); 65 extern void depEscapedWrite(FILE *pOutput, const char *pszFile, size_t cchFile, int fDepenency); 66 extern void depPrintChain(PDEPGLOBALS pThis, FILE *pOutput); 67 extern void depPrintTargetWithDeps(PDEPGLOBALS pThis, FILE *pOutput, const char *pszTarget, int fEscapeTarget); 61 68 extern void depPrintStubs(PDEPGLOBALS pThis, FILE *pOutput); 62 69
Note:
See TracChangeset
for help on using the changeset viewer.