/usr/include/pi-blob.h is in libpisock-dev 0.12.5-dfsg-2build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | /*
* $Id: pi-blob.h,v 1.1 2009/02/22 08:08:59 nicholas Exp $
*
* pi-blob.h - Support for blobs that appear in some palm databases.
*
* (c) 2008, Jon Schewe & Judd Montgomery
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library
* General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef _PILOT_BLOB_H_
#define _PILOT_BLOB_H_
#include <stdint.h>
#include <pi-appinfo.h>
#include <pi-buffer.h>
/* This is the blob that has the timezone data in it */
#define BLOB_TYPE_CALENDAR_TIMEZONE_ID "Bd00"
/* Not sure what this blob type is, but it's just some extra data that appears in some calendar records, when it exists it is always 4 bytes long */
#define BLOB_TYPE_CALENDAR_UNKNOWN_ID "Bd01"
/* Maximum number of blobs that can exist in a record, this is just a guess at the upper bound */
#define MAX_BLOBS 10
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
/* type ranges from "Bd00" - "Bd09" */
char type[4];
int16_t length;
uint8_t *data;
} Blob_t;
extern void free_Blob
PI_ARGS((Blob_t *blob));
extern int unpack_Blob_p
PI_ARGS((Blob_t *blob, const unsigned char *data, const size_t position));
extern int pack_Blob
PI_ARGS((const Blob_t *blob, pi_buffer_t *buf));
extern Blob_t *dup_Blob
PI_ARGS((const Blob_t *blob));
#ifdef __cplusplus
};
#endif
#endif /* _PILOT_BLOB_H */
/* vi: set ts=8 sw=4 sts=4 noexpandtab: cin */
/* ex: set tabstop=4 expandtab: */
/* Local Variables: */
/* indent-tabs-mode: t */
/* c-basic-offset: 8 */
/* End: */
|