winebuild: Remove unused empty_name_table.

This commit is contained in:
Gerald Pfeifer 2014-07-25 23:23:26 +02:00 committed by Alexandre Julliard
parent 78b96c8776
commit 4a8d186bbc
1 changed files with 0 additions and 9 deletions

View File

@ -115,15 +115,6 @@ static inline void remove_name( struct name_table *table, unsigned int idx )
table->count--;
}
/* make a name table empty */
static inline void empty_name_table( struct name_table *table )
{
unsigned int i;
for (i = 0; i < table->count; i++) free( table->names[i] );
table->count = 0;
}
/* locate a name in a (sorted) list */
static inline const char *find_name( const char *name, const struct name_table *table )
{