blob: d86f80395d733e1f34cf7fb66c81a8f75b7079a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _SCAN_INC
#define _SCAN_INC
#include "xmldata.h"
#include "services.h"
#include "utils.h"
#include "allocations.h"
#include "options.h"
void ScanPlugins(FilenameMap *fn_map, UpdateList *update_list);
void ScanLangpacks(FilenameMap *fn_map, UpdateList *update_list);
// returns true if any dll is not 'disabled' in db
bool RearrangeDlls(char *shortName, StrList &filenames);
bool RearrangeLangpacks(char *shortName, StrList &filenames);
#endif
|