~ubuntu-branches/debian/sid/genius/sid

« back to all changes in this revision

Viewing changes to src/structs.h

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2014-04-07 15:43:04 UTC
  • mfrom: (1.2.6)
  • Revision ID: package-import@ubuntu.com-20140407154304-21r03zdnfc571kz0
Tags: 1.0.17-1
* Take over package from pkg-gnome
* New upstream release. Closes: #716731
* Bump standards version.
* Update Vcs fields to Git.
* Move to single-debian-patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* GENIUS Calculator
2
 
 * Copyright (C) 1997-2009 Jiri (George) Lebl
 
2
 * Copyright (C) 1997-2012 Jiri (George) Lebl
3
3
 *
4
4
 * Author: Jiri (George) Lebl
5
5
 *
6
 
 * This program is free software; you can redistribute it and/or modify
 
6
 * This file is part of Genius.
 
7
 *
 
8
 * Genius is free software: you can redistribute it and/or modify
7
9
 * it under the terms of the GNU General Public License as published by
8
 
 * the Free Software Foundation; either version 2 of the License, or
 
10
 * the Free Software Foundation, either version 3 of the License, or
9
11
 * (at your option) any later version.
10
12
 *
11
13
 * This program is distributed in the hope that it will be useful,
14
16
 * GNU General Public License for more details.
15
17
 *
16
18
 * You should have received a copy of the GNU General Public License
17
 
 * along with this program; if not, write to the  Free Software
18
 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19
 
 * USA.
 
19
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
20
 */
21
21
 
22
22
#ifndef _GEL_STRUCTS_H
239
239
        GelETreeType type;
240
240
        GelETree *next;
241
241
        GelToken *id;
 
242
        gboolean uninitialized;
 
243
        
 
244
        /* gboolean is faster, then a bitfield and we right now
 
245
           don't gain anything */
 
246
        /*
 
247
        guint uninitialized:1;
 
248
        */
242
249
};
243
250
 
244
251
struct _GelETreeString {
287
294
struct _GelETreeMatrixRow {
288
295
        GelETreeType type;
289
296
        GelETree *next;
290
 
        gint16 nargs;
 
297
        guint32 nargs;
291
298
        GelETree *args;
292
299
};
293
300