Commit 9a079a64 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

cabinet: Declare a function static.

parent 76f4b9b0
...@@ -653,7 +653,4 @@ typedef struct { ...@@ -653,7 +653,4 @@ typedef struct {
struct FILELIST *FilterList; struct FILELIST *FilterList;
} SESSION; } SESSION;
/* from fdi.c */
int make_decode_table(cab_ULONG nsyms, cab_ULONG nbits, const cab_UBYTE *length, cab_UWORD *table);
#endif /* __WINE_CABINET_H */ #endif /* __WINE_CABINET_H */
...@@ -220,7 +220,8 @@ static void QTMupdatemodel(struct QTMmodel *model, int sym) { ...@@ -220,7 +220,8 @@ static void QTMupdatemodel(struct QTMmodel *model, int sym) {
* OK: 0 * OK: 0
* error: 1 * error: 1
*/ */
int make_decode_table(cab_ULONG nsyms, cab_ULONG nbits, const cab_UBYTE *length, cab_UWORD *table) { static int make_decode_table(cab_ULONG nsyms, cab_ULONG nbits,
const cab_UBYTE *length, cab_UWORD *table) {
register cab_UWORD sym; register cab_UWORD sym;
register cab_ULONG leaf; register cab_ULONG leaf;
register cab_UBYTE bit_num = 1; register cab_UBYTE bit_num = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment