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
+22
View File
@@ -0,0 +1,22 @@
/* HEADER - P_CRYPT.H
Copyright (C) Psion PLC 1991-92
VER DATE BY DESCRIPTION
===== ======== === ===========
1.00F 26/04/90 NSM First relase
1.10F 07/07/92 NSM Second release
1.11F 31/08/23 AB #ifndef fix
*/
#ifndef P_CRYPT_H
#define P_CRYPT_H
#include <stdepoc.h>
#define P_MAX_PASS_LEN 16 /* maximum password length */
typedef struct
{
unsigned char len; /* length of mask */
unsigned char pos; /* current position in mask */
unsigned char msk[P_MAX_PASS_LEN]; /* the mask */
} P_MASK;
#endif // P_CRYPT_H