-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #123 from AleksArt000/main
fixed stuff
- Loading branch information
Showing
33 changed files
with
1,867 additions
and
2,511 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,20 @@ | ||
#include "stdbool.h" | ||
|
||
#define QUEUE_MAX 64 | ||
// This is very stupid, but I don't want to work on this right now. | ||
#define QUEUE_MAX 65536 | ||
|
||
#define MAX_PATH 2048 | ||
/* | ||
START OF THE (sort of) CONSTANTS DECALRATIONS | ||
(They are not mean to be modified a lot) | ||
*/ | ||
|
||
|
||
// enable testing mode | ||
extern bool TESTING; | ||
// overwrite file when installing | ||
extern bool OVERWRITE; | ||
// enable verbose mode | ||
extern bool QUIET; | ||
// Flag for skipping checksum validation | ||
extern bool INSECURE; | ||
// Flag indicating that a user passed either Y or N to be used as default | ||
extern bool OVERWRITE_CHOISE; | ||
// Choise for passing N or Y to a prompt by default | ||
extern char* USER_CHOISE[2]; | ||
|
||
extern char* PACKAGE_QUEUE[QUEUE_MAX]; | ||
extern int QUEUE_COUNT; | ||
// Flag indicating that no inputs are required | ||
extern bool AUTO; | ||
// Package queue | ||
extern struct packages* PACKAGE_QUEUE; | ||
|
Oops, something went wrong.