-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
74f3a38
commit 50e2677
Showing
5 changed files
with
42 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// | ||
// VoodooInputIDs.hpp | ||
// | ||
// Created by Avery Black on 6/15/24. | ||
// Copyright © 2024 Kishor Prins. All rights reserved. | ||
// | ||
|
||
#ifndef VOODOO_INPUT_IDS_HPP | ||
#define VOODOO_INPUT_IDS_HPP | ||
|
||
// macOS 10.10-14 | ||
constexpr int kVoodooInputProductMacbook8_1 = 0x272; | ||
// macOS 15+ | ||
constexpr int kVoodooInputProductMacbookAir10_1 = 0x281; | ||
constexpr int kVoodooInputVendorApple = 0x5ac; | ||
|
||
constexpr int kVoodooInputVersionSequoia = 24; | ||
|
||
int VoodooInputGetProductId(); | ||
|
||
#endif // VOODOO_INPUT_IDS_HPP |
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