build: add the SIBO SDK

This commit is contained in:
2026-07-06 18:01:36 +01:00
parent d76326729c
commit 64e484448c
757 changed files with 97167 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
/* Release 3.00 */
/*-------------------------------------------------------------------------*
* *
* share.h - header file for file sharing used with sopen. *
* *
* COPYRIGHT (C) 1989 Jensen and Partners. All Rights Reserved *
* *
*--------------------------------------------------------------------------*/
#include <stdepoc.h>
#ifndef _SHARE_INC_
#define _SHARE_INC_
#define SH_NOINHERIT 0x80
#define SH_COMPAT 0x00
#define SH_DENYRW 0x10
#define SH_DENYWR 0x20
#define SH_DENYRD 0x30
#define SH_DENYNO 0x40
#define SH_ALL 0xF0
#define SH_DENYNONE SH_DENYNO /* MS documentation uses both */
#endif