This changeset fixes a huge pile of problems, as indicated in the error log of the Doxygen run after merging all the recent Doxygen improvements unfortunately, auto-linking does still not work at various places. There is no clear indication what might be the problem. Possibly the rather unstable Sqlite support in this Doxygen version is the cause. Anyway, needs to be investigated further.
55 lines
1.5 KiB
C
55 lines
1.5 KiB
C
/*
|
|
DISPLAY-HANDLES.h - opaque handle types for playback and display
|
|
|
|
Copyright (C) Lumiera.org
|
|
2009, Hermann Vosseler <Ichthyostega@web.de>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of
|
|
the License, or (at your option) any later version.
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
/** @file display-handles.h
|
|
** Opaque handles and similar typedefs used to communicate via the
|
|
** lumiera::Display and lumiera::DummyPlayer facade interfaces.
|
|
**
|
|
** @see gui::DisplayService
|
|
**
|
|
*/
|
|
|
|
|
|
#ifndef LUMIERA_DISPLAY_HANDLES_H
|
|
#define LUMIERA_DISPLAY_HANDLES_H
|
|
|
|
|
|
|
|
|
|
typedef unsigned char * LumieraDisplayFrame;
|
|
|
|
|
|
struct lumiera_displaySlot_struct
|
|
{
|
|
void (*put_)(lumiera_displaySlot_struct*, LumieraDisplayFrame);
|
|
};
|
|
typedef struct lumiera_displaySlot_struct lumiera_displaySlot;
|
|
typedef lumiera_displaySlot* LumieraDisplaySlot;
|
|
|
|
|
|
|
|
struct lumiera_playprocess_struct { };
|
|
typedef struct lumiera_playprocess_struct lumiera_playprocess;
|
|
typedef lumiera_playprocess* LumieraPlayProcess;
|
|
|
|
|
|
#endif
|