naev 0.12.5
physfs_archiver_blacklist.h
1/*
2 * See Licensing and Copyright notice in naev.h
3 */
4#pragma once
5
6int blacklist_append( const char *path );
7int whitelist_append( const char *path );
8int blacklist_init( void );
9void blacklist_exit( void );
int blacklist_init(void)
Initializes the blacklist system if necessary. If no plugin is blacklisting, it will not do anything.
int blacklist_append(const char *path)
Appends a regex string to be blacklisted.
int whitelist_append(const char *path)
Appends a regex string to be whitelisted.
void blacklist_exit(void)
Exits the blacklist system and cleans up as necessary.