Home | History | Annotate | Download | only in HiiPack

Lines Matching full:fullpath

80   char  FullPath[MAX_PATH];

85 strcpy (FullPath, RootDirectory);
90 if (_getcwd (FullPath, sizeof (FullPath)) == NULL) {
97 if (FullPath[strlen (FullPath) - 1] != '\\') {
98 strcat (FullPath, "\\");
101 strcat (FullPath, RootDirectory);
104 if (FullPath[strlen (FullPath) - 1] == '\\') {
105 FullPath[strlen (FullPath) - 1] = 0;
110 return ProcessDirectory (FullPath, FileMask, Callback);