Changeset 22 in Main for trunk/Server/tw_config.h
- Timestamp:
- Sep 14, 2024, 10:25:38 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Server/tw_config.h
r21 r22 22 22 #endif 23 23 24 #define MAX_PORTS 1024 25 #define MAX_VHOSTS 1024 26 #define MAX_MODULES 1024 27 #define MAX_DIRS 1024 28 #define MAX_MIME 1024 24 #define MAX_PORTS 1024 25 #define MAX_VHOSTS 1024 26 #define MAX_MODULES 1024 27 #define MAX_DIRS 1024 28 #define MAX_MIME 1024 29 #define MAX_ICON 1024 29 30 30 31 enum TW_DIR_TYPE { … … 44 45 }; 45 46 47 struct tw_icon_entry { 48 char* mime; 49 char* icon; 50 }; 51 46 52 struct tw_config_entry { 47 53 char* name; … … 54 60 struct tw_mime_entry mimes[MAX_DIRS]; 55 61 int mime_count; 62 struct tw_icon_entry icons[MAX_DIRS]; 63 int icon_count; 56 64 }; 57 65
Note:
See TracChangeset
for help on using the changeset viewer.