diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-21 23:07:43 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-21 23:07:43 +0200 |
| commit | b95b1fc42d371b08aa82fea8e92aa04b2ef5631f (patch) | |
| tree | 7bde92a0378bd1be9f34c98e8620daa542f31b17 /dev/SCI/Hint.h | |
| parent | dc33dd4b6722d3fb60aaf10a7472162b07180f9c (diff) | |
Kernel+DLL: See below.
+ Document LPC functions and reworked err_bug_check function to return false when everything is OK.
+ Added native APIs to SCI as well (threading, loader...)
+ Update ReadMe(s) of the other DLLs.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/SCI/Hint.h')
| -rw-r--r-- | dev/SCI/Hint.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dev/SCI/Hint.h b/dev/SCI/Hint.h new file mode 100644 index 00000000..c785f953 --- /dev/null +++ b/dev/SCI/Hint.h @@ -0,0 +1,23 @@ +/* ------------------------------------------- + + Copyright ZKA Technologies. + +------------------------------------------- */ + +#ifndef __SCI_HINT_HXX__ +#define __SCI_HINT_HXX__ + +#pragma compiler(hint_manifest) + +#define _Input +#define _Output + +#define _Optional + +#define _StrictCheckInput +#define _StrictCheckOutput + +#define _InOut +#define _StrictInOut + +#endif // ifndef __SCI_HINT_HXX__ |
