/usr/include/gpac/nodes_xbl.h is in libgpac-dev 0.4.5+svn3462~dfsg0-1.
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 | /*
* GPAC - Multimedia Framework C SDK
*
* Authors: Cyril Concolato - Jean Le Feuvre
* Copyright (c)2004-200X ENST - All rights reserved
*
* This file is part of GPAC / XBL Elements
*
* GPAC is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* GPAC 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#ifndef _GF_XBL_NODES_H
#define _GF_XBL_NODES_H
#ifdef __cplusplus
extern "C" {
#endif
#include <gpac/internal/scenegraph_dev.h>
#include <gpac/svg_types.h>
#define XBL_String_datatype SVG_String_datatype
struct _all_atts {
DOM_String *id;
DOM_String *extends;
DOM_String *display;
DOM_String *inheritstyle;
DOM_String *includes;
DOM_String *name;
DOM_String *implements;
DOM_String *type;
DOM_String *readonly;
DOM_String *onget;
DOM_String *onset;
DOM_String *event;
DOM_String *action;
DOM_String *phase;
DOM_String *button;
DOM_String *modifiers;
DOM_String *keycode;
DOM_String *key;
DOM_String *charcode;
DOM_String *clickcount;
DOM_String *command;
DOM_String *preventdefault;
DOM_String *src;
};
#ifdef __cplusplus
}
#endif
#endif /*_GF_SVG_NODES_H*/
|