~ubuntu-branches/ubuntu/quantal/gputils/quantal

« back to all changes in this revision

Viewing changes to gpasm/coff.h

  • Committer: Bazaar Package Importer
  • Author(s): Aurelien Jarno
  • Date: 2005-04-16 01:00:23 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20050416010023-xo612jqs8xlk0b3d
Tags: upstream-0.13.1
ImportĀ upstreamĀ versionĀ 0.13.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Generate coff file
2
 
   Copyright (C) 2002, 2003, 2004
 
2
   Copyright (C) 2002, 2003, 2004, 2005
3
3
   Craig Franklin
4
4
 
5
5
This file is part of gputils.
27
27
void coff_init(void);
28
28
void coff_close_file(void);
29
29
void coff_new_section(char *name, int addr, int flags);
30
 
void coff_add_sym(char *name, int value, enum gpasmValTypes type);
 
30
gp_symbol_type *coff_add_sym(char *name, int value, enum gpasmValTypes type);
31
31
void coff_reloc(int symbol, short offset, unsigned short type);
32
32
void coff_linenum(int emitted);
33
33
gp_symbol_type *coff_add_filesym(char *name, int isinclude);
34
34
void coff_add_eofsym(void);
35
35
void coff_add_listsym(void);
36
36
void coff_add_nolistsym(void);
 
37
void coff_add_directsym(unsigned char command, char *string);
 
38
void coff_add_identsym(char *string);
37
39
char *coff_local_name(char *name);
38
40
 
39
41
#endif