mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
ea3895805b
That which isn't rewritten is horribly broken. However, this does include a nice mechanism for building QC structs for emitting data. emit.c has been gutted in the spirit of "throw one away". There is much work to be done to get even variables emitted, let alone code. Things should be a little more fun from here on.
56 lines
1.5 KiB
C
56 lines
1.5 KiB
C
/*
|
|
struct.h
|
|
|
|
structure support
|
|
|
|
Copyright (C) 2001 Bill Currie <bill@taniwha.org>
|
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
Date: 2001/12/08
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to:
|
|
|
|
Free Software Foundation, Inc.
|
|
59 Temple Place - Suite 330
|
|
Boston, MA 02111-1307, USA
|
|
|
|
$Id$
|
|
*/
|
|
|
|
#ifndef __struct_h
|
|
#define __struct_h
|
|
|
|
struct symbol_s;
|
|
struct symtab_s;
|
|
struct type_s;
|
|
|
|
typedef struct {
|
|
const char *name;
|
|
struct type_s *type;
|
|
} struct_def_t;
|
|
|
|
struct symbol_s *find_struct (int su, struct symbol_s *tag,
|
|
struct type_s *type);
|
|
struct symbol_s *build_struct (int su, struct symbol_s *tag,
|
|
struct symtab_s *symtab, struct type_s *type);
|
|
struct symbol_s *find_enum (struct symbol_s *tag);
|
|
struct symtab_s *start_enum (struct symbol_s *enm);
|
|
void add_enum (struct symbol_s *enm, struct symbol_s *name,
|
|
struct expr_s *val);
|
|
|
|
struct symbol_s *make_structure (const char *name, int su, struct_def_t *defs,
|
|
struct type_s *type);
|
|
|
|
#endif//__struct_h
|