Changeset a7f6dd2b9fc3f8ad29a05135c99288156961329b
- Timestamp:
- 11/01/09 12:04:05 (2 years ago)
- Author:
- Erwan Velu <erwan.velu@…>
- Children:
- dff89818c3b64eff6f31f04dcef240c5a9daff4c
- Parents:
- 57689f219c5155e186ced1c9f5f972d5d0b340ed
- git-committer:
- Erwan Velu <erwan.velu@free.fr> / 2009-11-01T13:04:05Z+0100
- Message:
-
Revert "hdt: Adding core developper role"
This reverts commit 57689f219c5155e186ced1c9f5f972d5d0b340ed.
- Location:
- com32/hdt
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r57689f
|
ra7f6dd
|
|
| 238 | 238 | { |
| 239 | 239 | printf("HDT\n"); |
| 240 | | printf(" Product : %s\n", PRODUCT_NAME); |
| 241 | | printf(" Version : %s\n", VERSION); |
| 242 | | printf(" Project Leader : %s\n", AUTHOR); |
| 243 | | printf(" Contact : %s\n", CONTACT); |
| 244 | | printf(" Core Developer : %s\n", CORE_DEVELOPER); |
| | 240 | printf(" Product : %s\n", PRODUCT_NAME); |
| | 241 | printf(" Version : %s\n", VERSION); |
| | 242 | printf(" Author : %s\n", AUTHOR); |
| | 243 | printf(" Contact : %s\n", CONTACT); |
| 245 | 244 | char *contributors[NB_CONTRIBUTORS] = CONTRIBUTORS; |
| 246 | 245 | for (int c = 0; c < NB_CONTRIBUTORS; c++) { |
| 247 | | printf(" Contributor : %s\n", contributors[c]); |
| | 246 | printf(" Contributor : %s\n", contributors[c]); |
| 248 | 247 | } |
| 249 | 248 | } |
-
|
r57689f
|
ra7f6dd
|
|
| 40 | 40 | set_menu_pos(SUBMENU_Y, SUBMENU_X); |
| 41 | 41 | |
| 42 | | snprintf(buffer, sizeof buffer, "Product : %s", PRODUCT_NAME); |
| | 42 | snprintf(buffer, sizeof buffer, "Product : %s", PRODUCT_NAME); |
| 43 | 43 | snprintf(statbuffer, sizeof statbuffer, "Product : %s", PRODUCT_NAME); |
| 44 | 44 | add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); |
| 45 | 45 | menu->items_count++; |
| 46 | 46 | |
| 47 | | snprintf(buffer, sizeof buffer, "Version : %s", VERSION); |
| | 47 | snprintf(buffer, sizeof buffer, "Version : %s", VERSION); |
| 48 | 48 | snprintf(statbuffer, sizeof statbuffer, "Version : %s", VERSION); |
| 49 | 49 | add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); |
| 50 | 50 | menu->items_count++; |
| 51 | 51 | |
| 52 | | snprintf(buffer, sizeof buffer, "Project Leader : %s", AUTHOR); |
| 53 | | snprintf(statbuffer, sizeof statbuffer, "Project Leader : %s", AUTHOR); |
| | 52 | snprintf(buffer, sizeof buffer, "Author : %s", AUTHOR); |
| | 53 | snprintf(statbuffer, sizeof statbuffer, "Author : %s", AUTHOR); |
| 54 | 54 | add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); |
| 55 | 55 | menu->items_count++; |
| 56 | 56 | |
| 57 | | snprintf(buffer, sizeof buffer, "Contact : %s", CONTACT); |
| | 57 | snprintf(buffer, sizeof buffer, "Contact : %s", CONTACT); |
| 58 | 58 | snprintf(statbuffer, sizeof statbuffer, "Contact : %s", CONTACT); |
| 59 | | add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); |
| 60 | | menu->items_count++; |
| 61 | | |
| 62 | | snprintf(buffer, sizeof buffer, "Core Developer : %s", CORE_DEVELOPER); |
| 63 | | snprintf(statbuffer, sizeof statbuffer, "Core Developer : %s", CORE_DEVELOPER); |
| 64 | 59 | add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); |
| 65 | 60 | menu->items_count++; |
| … |
… |
|
| 67 | 62 | char *contributors[NB_CONTRIBUTORS] = CONTRIBUTORS; |
| 68 | 63 | for (int c=0; c<NB_CONTRIBUTORS; c++) { |
| 69 | | snprintf(buffer, sizeof buffer, "Contributor : %s", contributors[c]); |
| | 64 | snprintf(buffer, sizeof buffer, "Contributor : %s", contributors[c]); |
| 70 | 65 | snprintf(statbuffer, sizeof statbuffer, "Contributor : %s", contributors[c]); |
| 71 | 66 | add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); |
-
|
r57689f
|
ra7f6dd
|
|
| 32 | 32 | #define PRODUCT_NAME "Hardware Detection Tool" |
| 33 | 33 | #define AUTHOR "Erwan Velu" |
| 34 | | #define CORE_DEVELOPER "Pierre-Alexandre Meyer" |
| 35 | 34 | #define CONTACT "hdt@zytor.com" |
| 36 | 35 | #define VERSION "0.3.5-pre1" |
| 37 | | #define NB_CONTRIBUTORS 2 |
| 38 | | #define CONTRIBUTORS {"Sebastien Gonzalve", "Gert Hulselmans"} |
| | 36 | #define NB_CONTRIBUTORS 3 |
| | 37 | #define CONTRIBUTORS {"Pierre-Alexandre Meyer", "Sebastien Gonzalve", "Gert Hulselmans"} |
| 39 | 38 | |
| 40 | 39 | #define ATTR_PACKED __attribute__((packed)) |