Platon Technologies
neprihlásený Prihlásiť Registrácia
SlovakEnglish
open source software development oslavujeme 10 rokov vývoja otvoreného softvéru! Piatok, 29. marec 2024

Rozdiely pre games/3do-view/dir.c medzi verziami 1.8 a 1.9

verzia 1.8, 2003/08/03 21:34:18 verzia 1.9, 2003/08/12 20:50:59
Riadok 10 
Riadok 10 
  * 19/05/2003 - created   * 19/05/2003 - created
  * 27/06/2003 - added Win32 support   * 27/06/2003 - added Win32 support
  * 15/07/2003 - smart memory allocation for files and directories data   * 15/07/2003 - smart memory allocation for files and directories data
    * 12/08/2003 - X11 adaptations
  */   */
   
 /* $Platon: games/3do-view/dir.c,v 1.7 2003/07/15 15:45:34 nepto Exp $ */  /* $Platon: games/3do-view/dir.c,v 1.8 2003/08/03 21:34:18 nepto Exp $ */
   
 #include <string.h>  #include <string.h>
 #include <stdlib.h>  #include <stdlib.h>
Riadok 24 
Riadok 25 
 #  define DIR_REALLOC_DATA_STEP                 (255)  #  define DIR_REALLOC_DATA_STEP                 (255)
 #endif  #endif
   
 #if PLATON_SYSTEM_SVGALIB  #if PLATON_SYSTEM_SVGALIB || PLATON_SYSTEM_X11
 #  include <unistd.h>  #  include <unistd.h>
 #  include <dirent.h>  #  include <dirent.h>
 #  include <sys/types.h>  #  include <sys/types.h>
Riadok 73  void get_directories_and_files(char ***d
Riadok 74  void get_directories_and_files(char ***d
         int files_alloc_bytes       = 0;          int files_alloc_bytes       = 0;
         int files_free_bytes        = 0;          int files_free_bytes        = 0;
 #endif  #endif
 #if PLATON_SYSTEM_SVGALIB  #if PLATON_SYSTEM_SVGALIB || PLATON_SYSTEM_X11
         DIR *dirp;          DIR *dirp;
         struct dirent *dp;          struct dirent *dp;
         struct stat st;          struct stat st;
Riadok 97  void get_directories_and_files(char ***d
Riadok 98  void get_directories_and_files(char ***d
         directories_size = 0;          directories_size = 0;
         files_size       = 0;          files_size       = 0;
   
 #if PLATON_SYSTEM_SVGALIB  #if PLATON_SYSTEM_SVGALIB || PLATON_SYSTEM_X11
         for (dp = readdir(dirp); dp != NULL; dp = readdir(dirp)) {          for (dp = readdir(dirp); dp != NULL; dp = readdir(dirp)) {
                 if (stat(DIR_FILENAME, &st))                  if (stat(DIR_FILENAME, &st))
                         continue;                          continue;
Riadok 161  void get_directories_and_files(char ***d
Riadok 162  void get_directories_and_files(char ***d
 #endif  #endif
                 (*size)++;                  (*size)++;
                 (*ptr)[*size] = NULL;                  (*ptr)[*size] = NULL;
 #if PLATON_SYSTEM_SVGALIB  #if PLATON_SYSTEM_SVGALIB || PLATON_SYSTEM_X11
         }          }
         closedir(dirp);          closedir(dirp);
 #endif  #endif

Legend:
Odstranené z verzie1.8  
zmenené riadky
  Pridané vo verzii1.9

Platon Group <platon@platon.sk> http://platon.sk/
Copyright © 2002-2006 Platon Group
Stránka používa redakčný systém Metafox
Na začiatok