forked from LizardByte/Sunshine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(src): apply new patterns from LizardByte#2763
- Loading branch information
1 parent
bbd3287
commit 690939e
Showing
18 changed files
with
93 additions
and
188 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 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
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,11 +1,15 @@ | ||
/** | ||
* @file src/input/init.h | ||
* @brief Declarations for common input initialization. | ||
*/ | ||
#pragma once | ||
|
||
namespace input { | ||
struct input_t; | ||
|
||
enum class batch_result_e { | ||
batched, // This entry was batched with the source entry | ||
not_batchable, // Not eligible to batch but continue attempts to batch | ||
terminate_batch, // Stop trying to batch with this entry | ||
batched, ///< Batched with the source entry | ||
not_batchable, ///< Not eligible to batch but continue attempts to batch | ||
terminate_batch, ///< Stop trying to batch | ||
}; | ||
} // namespace input |
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
Oops, something went wrong.