-
-
Notifications
You must be signed in to change notification settings - Fork 647
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#108 make loading of scripting-addition more robust - validating vers…
…ion and functionality
- Loading branch information
1 parent
f3319b3
commit 6dedd58
Showing
9 changed files
with
2,633 additions
and
2,484 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#ifndef SA_COMMON_H | ||
#define SA_COMMON_H | ||
|
||
#define OSAX_VERSION "1.0.0" | ||
|
||
#define OSAX_PAYLOAD_SUCCESS 0 | ||
#define OSAX_PAYLOAD_NOT_FOUND 1 | ||
#define OSAX_PAYLOAD_ALREADY_LOADED 2 | ||
#define OSAX_PAYLOAD_NOT_LOADED 3 | ||
#define OSAX_PAYLOAD_UNAUTHORIZED -1708 | ||
|
||
#define OSAX_ATTRIB_DOCK_SPACES 0x01 | ||
#define OSAX_ATTRIB_DPPM 0x02 | ||
#define OSAX_ATTRIB_ADD_SPACE 0x04 | ||
#define OSAX_ATTRIB_REM_SPACE 0x08 | ||
#define OSAX_ATTRIB_MOV_SPACE 0x10 | ||
#define OSAX_ATTRIB_SET_WINDOW 0x20 | ||
|
||
#define OSAX_ATTRIB_ALL (OSAX_ATTRIB_DOCK_SPACES | \ | ||
OSAX_ATTRIB_DPPM | \ | ||
OSAX_ATTRIB_ADD_SPACE | \ | ||
OSAX_ATTRIB_REM_SPACE | \ | ||
OSAX_ATTRIB_MOV_SPACE | \ | ||
OSAX_ATTRIB_SET_WINDOW) | ||
|
||
#endif |
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
Oops, something went wrong.