~ubuntu-branches/debian/sid/ncurses/sid-200908151540

« back to all changes in this revision

Viewing changes to test/edit_field.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-05-24 15:13:01 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090524151301-uixgxq2zonfov2nr
Tags: 5.7+20090523-1
MergingĀ upstreamĀ versionĀ 5.7+20090523.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/****************************************************************************
2
 
 * Copyright (c) 2003-2004,2005 Free Software Foundation, Inc.              *
 
2
 * Copyright (c) 2003-2006,2008 Free Software Foundation, Inc.              *
3
3
 *                                                                          *
4
4
 * Permission is hereby granted, free of charge, to any person obtaining a  *
5
5
 * copy of this software and associated documentation files (the            *
26
26
 * authorization.                                                           *
27
27
 ****************************************************************************/
28
28
/*
29
 
 * $Id: edit_field.h,v 1.5 2006/06/03 16:38:57 tom Exp $
 
29
 * $Id: edit_field.h,v 1.6 2008/12/20 19:23:18 tom Exp $
30
30
 *
31
31
 * Interface of edit_field.c
32
32
 */
43
43
#define MY_EDT_MODE     EDIT_FIELD('e')
44
44
#define MY_INS_MODE     EDIT_FIELD('t')
45
45
 
 
46
typedef struct {
 
47
    chtype background;
 
48
} FieldAttrs;
 
49
 
46
50
extern void help_edit_field(void);
47
51
extern int edit_field(FORM * form, int *result);
48
52