/usr/include/Gem/Gem/Loaders.h is in gem-dev 1:0.93.3-13.
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 | /*-----------------------------------------------------------------
LOG
GEM - Graphics Environment for Multimedia
- registers a loader with Pd
Copyright (c) 1997-1999 Mark Danks. mark@danks.org
Copyright (c) G-bünther Geiger. geiger@epy.co.at-A
Copyright (c) 2001-2011 IOhannes m zmölnig. forum::für::umläute. IEM. zmoelnig@iem.at
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "GEM.LICENSE.TERMS" in this distribution.
-----------------------------------------------------------------*/
#ifndef _INCLUDE__GEM_GEM_LOADERS_H_
#define _INCLUDE__GEM_GEM_LOADERS_H_
#include "m_pd.h"
extern "C" {
typedef int (*gem_loader_t)(t_canvas *canvas, char *classname);
void gem_register_loader(gem_loader_t loader);
}
#endif
|