Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/sh_files.h

    r20 r27  
    2323/* register exceptions to hardlink check
    2424 */
    25 int sh_files_hle_reg (char * str);
     25int sh_files_hle_reg (const char * str);
    2626
    2727/* check the setup
     
    3535/* activate hardlink check
    3636 */
    37 int sh_files_check_hardlinks (char * opt);
     37int sh_files_check_hardlinks (const char * opt);
    3838
    3939/* set recursion depth
     
    4343/* report only once
    4444 */
    45 int sh_files_reportonce(char * c);
     45int sh_files_reportonce(const char * c);
    4646
    4747/* report full details
    4848 */
    49 int sh_files_fulldetail(char * c);
     49int sh_files_fulldetail(const char * c);
    5050
    5151/* reset the 'checked' flag
     
    6767/* push a directory on the stack USER0
    6868 */
    69 int  sh_files_pushdir_user0 (char * dirName);
     69int  sh_files_pushdir_user0 (const char * dirName);
    7070
    7171/* push a directory on the stack USER1
    7272 */
    73 int  sh_files_pushdir_user1 (char * dirName);
     73int  sh_files_pushdir_user1 (const char * dirName);
     74
     75/* push a directory on the stack USER2
     76 */
     77int  sh_files_pushdir_user2 (const char * dirName);
     78
     79/* push a directory on the stack USER3
     80 */
     81int  sh_files_pushdir_user3 (const char * dirName);
     82
     83/* push a directory on the stack USER4
     84 */
     85int  sh_files_pushdir_user4 (const char * dirName);
    7486
    7587/* push a directory on the stack PRELINK
    7688 */
    77 int  sh_files_pushdir_prelink (char * dirName);
     89int  sh_files_pushdir_prelink (const char * dirName);
    7890
    7991/* push a directory on the stack ATTR
    8092 */
    81 int  sh_files_pushdir_attr (char * dirName);
     93int  sh_files_pushdir_attr (const char * dirName);
    8294
    8395/* push a directory on the stack READONLY
    8496 */
    85 int  sh_files_pushdir_ro (char * dirName);
     97int  sh_files_pushdir_ro (const char * dirName);
    8698
    8799/* push a directory on the stack LOGFILE
    88100 */
    89 int  sh_files_pushdir_log (char * dirName);
     101int  sh_files_pushdir_log (const char * dirName);
    90102
    91103/* push a directory on the stack GROWING LOGFILE
    92104 */
    93 int  sh_files_pushdir_glog (char * dirName);
     105int  sh_files_pushdir_glog (const char * dirName);
    94106
    95107/* push a directory on the stack IGNORE NONE
    96108 */
    97 int  sh_files_pushdir_noig (char * dirName);
     109int  sh_files_pushdir_noig (const char * dirName);
    98110
    99111/* push a directory on the stack IGNORE ALL
    100112 */
    101 int  sh_files_pushdir_allig (char * dirName);
     113int  sh_files_pushdir_allig (const char * dirName);
    102114
    103115
    104116/* push a file on the stack USER0
    105117 */
    106 int  sh_files_pushfile_user0 (char * dirName);
     118int  sh_files_pushfile_user0 (const char * dirName);
    107119
    108120/* push a file on the stack USER1
    109121 */
    110 int  sh_files_pushfile_user1 (char * dirName);
     122int  sh_files_pushfile_user1 (const char * dirName);
     123
     124/* push a file on the stack USER2
     125 */
     126int  sh_files_pushfile_user2 (const char * dirName);
     127
     128/* push a file on the stack USER3
     129 */
     130int  sh_files_pushfile_user3 (const char * dirName);
     131
     132/* push a file on the stack USER4
     133 */
     134int  sh_files_pushfile_user4 (const char * dirName);
    111135
    112136/* push a file on the stack PRELINK
    113137 */
    114 int  sh_files_pushfile_prelink (char * dirName);
     138int  sh_files_pushfile_prelink (const char * dirName);
    115139
    116140/* push a file on the stack ATTR
    117141 */
    118 int  sh_files_pushfile_attr (char * dirName);
     142int  sh_files_pushfile_attr (const char * dirName);
    119143
    120144/* push a file on the stack READONLY
    121145 */
    122 int  sh_files_pushfile_ro (char * dirName);
     146int  sh_files_pushfile_ro (const char * dirName);
    123147
    124148/* push a file on the stack LOGFILE
    125149 */
    126 int  sh_files_pushfile_log (char * dirName);
     150int  sh_files_pushfile_log (const char * dirName);
    127151
    128152/* push a file on the stack GROWING LOGFILE
    129153 */
    130 int  sh_files_pushfile_glog (char * dirName);
     154int  sh_files_pushfile_glog (const char * dirName);
    131155
    132156/* push a file on the stack IGNORE NONE
    133157 */
    134 int  sh_files_pushfile_noig (char * dirName);
     158int  sh_files_pushfile_noig (const char * dirName);
    135159
    136160/* push a file on the stack IGNORE ALL
    137161 */
    138 int  sh_files_pushfile_allig (char * dirName);
     162int  sh_files_pushfile_allig (const char * dirName);
    139163
    140164
     
    153177/* redefine policies
    154178 */
    155 int sh_files_redef_user0(char * str);
    156 int sh_files_redef_user1(char * str);
    157 int sh_files_redef_prelink(char * str);
    158 int sh_files_redef_readonly(char * str);
    159 int sh_files_redef_loggrow(char * str);
    160 int sh_files_redef_logfiles(char * str);
    161 int sh_files_redef_attributes(char * str);
    162 int sh_files_redef_noignore(char * str);
    163 int sh_files_redef_allignore(char * str);
     179int sh_files_redef_user0(const char * str);
     180int sh_files_redef_user1(const char * str);
     181int sh_files_redef_user2(const char * str);
     182int sh_files_redef_user3(const char * str);
     183int sh_files_redef_user4(const char * str);
     184int sh_files_redef_prelink(const char * str);
     185int sh_files_redef_readonly(const char * str);
     186int sh_files_redef_loggrow(const char * str);
     187int sh_files_redef_logfiles(const char * str);
     188int sh_files_redef_attributes(const char * str);
     189int sh_files_redef_noignore(const char * str);
     190int sh_files_redef_allignore(const char * str);
    164191
    165192
Note: See TracChangeset for help on using the changeset viewer.