pike.git
/
src
/
modules
/
SANE
/
sane.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/SANE/sane.c:1:
/* || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: sane.c,v 1.
15
2002/
10
/
21
17
:
06
:
22
marcus
Exp $
+
|| $Id: sane.c,v 1.
16
2002/
12
/
30
12
:
30:
06
grubba
Exp $
*/ #include "config.h" #if defined(HAVE_SANE_SANE_H) || defined(HAVE_SANE_H) #ifdef HAVE_SANE_SANE_H #include <sane/sane.h> #else #ifdef HAVE_SANE_H #include <sane.h>
pike.git/src/modules/SANE/sane.c:32:
#include "backend.h" #include "operators.h" #include "module_support.h" #include "builtin_functions.h" #include "../Image/image.h" #define sp Pike_sp
-
RCSID("$Id: sane.c,v 1.
15
2002/
10
/
21
17
:
06
:
22
marcus
Exp $");
+
RCSID("$Id: sane.c,v 1.
16
2002/
12
/
30
12
:
30:
06
grubba
Exp $");
/*! @module SANE *! *! This module enables access to the SANE (Scanner Access Now Easy) *! library from pike */ static int sane_is_inited; struct scanner
pike.git/src/modules/SANE/sane.c:752:
sane_cancel( THIS->h ); } /*! @endclass */ /*! @decl constant FrameGray *! @decl constant FrameRGB *! @decl constant FrameRed *! @decl constant FrameGreen
-
*! @decl
cosntant
FrameBlue
+
*! @decl
constant
FrameBlue
*/ /*! @endmodule */ static void init_scanner_struct( struct object *p ) { THIS->h = 0; }