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 75 76 77 78 79
|
/*
* $Id: patternm.h,v 1.30 2009-06-03 11:34:00 vrsieh Exp $
*
* Copyright (C) 2005-2009 FAUmachine Team <info@faumachine.org>.
* This program is free software. You can redistribute it and/or modify it
* under the terms of the GNU General Public License, either version 2 of
* the License, or (at your option) any later version. See COPYING.
*/
#include "sig_boolean.h"
#include "sig_integer.h"
#include "sig_manage.h"
#include "sig_match.h"
#include "sig_string.h"
#include "sig_opt_rgb.h"
extern void *
patternm_create(
const char *name,
struct sig_manage *port_manage,
struct sig_opt_rgb *port_video,
struct sig_match *port_slot0,
struct sig_match *port_slot1,
struct sig_match *port_slot2,
struct sig_match *port_slot3,
struct sig_match *port_slot4,
struct sig_match *port_slot5,
struct sig_match *port_slot6,
struct sig_match *port_slot7,
struct sig_match *port_slot8,
struct sig_match *port_slot9,
struct sig_match *port_slot10,
struct sig_match *port_slot11,
struct sig_match *port_slot12,
struct sig_match *port_slot13,
struct sig_match *port_slot14,
struct sig_match *port_slot15,
struct sig_string *port_text0,
struct sig_boolean *port_text0_state,
struct sig_string *port_text1,
struct sig_boolean *port_text1_state,
struct sig_string *port_text2,
struct sig_boolean *port_text2_state,
struct sig_string *port_text3,
struct sig_boolean *port_text3_state,
struct sig_string *port_asc_text0,
struct sig_boolean *port_asc_text0_state,
struct sig_string *port_asc_text1,
struct sig_boolean *port_asc_text1_state,
struct sig_string *port_asc_text2,
struct sig_boolean *port_asc_text2_state,
struct sig_string *port_asc_text3,
struct sig_boolean *port_asc_text3_state,
struct sig_string *port_pattern_rectangle0,
struct sig_integer *port_match_rectangle0_x,
struct sig_integer *port_match_rectangle0_y,
struct sig_integer *port_match_rectangle0_w,
struct sig_integer *port_match_rectangle0_h,
struct sig_string *port_pattern_rectangle1,
struct sig_integer *port_match_rectangle1_x,
struct sig_integer *port_match_rectangle1_y,
struct sig_integer *port_match_rectangle1_w,
struct sig_integer *port_match_rectangle1_h,
struct sig_string *port_pattern_rectangle2,
struct sig_integer *port_match_rectangle2_x,
struct sig_integer *port_match_rectangle2_y,
struct sig_integer *port_match_rectangle2_w,
struct sig_integer *port_match_rectangle2_h,
struct sig_string *port_pattern_rectangle3,
struct sig_integer *port_match_rectangle3_x,
struct sig_integer *port_match_rectangle3_y,
struct sig_integer *port_match_rectangle3_w,
struct sig_integer *port_match_rectangle3_h
);
extern void
patternm_destroy(void *_cpssp);
|