Add \rcs, \endrcs, \license, and \endlicense wrappers around $IdPath$ and

copyright/license portions to shorten Doxygen output.  Comment only change.

svn path=/trunk/yasm/; revision=985
This commit is contained in:
Peter Johnson 2003-06-28 17:38:08 +00:00
parent fb16d0a793
commit 3de47f7b4d
12 changed files with 63 additions and 15 deletions

View file

@ -2,8 +2,11 @@
* \file libyasm.h
* \brief YASM library primary header file.
*
* \rcs
* $IdPath$
* \endrcs
*
* \license
* Copyright (C) 2003 Peter Johnson
*
* Redistribution and use in source and binary forms, with or without
@ -26,6 +29,7 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* \endlicense
*
* Define YASM_LIB_INTERNAL to include many internal function and variable
* definitions that violate the yasm_* namespace. This includes

View file

@ -1,9 +1,12 @@
/**
* \file arch.h
* \file libyasm/arch.h
* \brief YASM architecture interface.
*
* \rcs
* $IdPath$
* \endrcs
*
* \license
* Copyright (C) 2002 Peter Johnson
*
* Redistribution and use in source and binary forms, with or without
@ -26,6 +29,7 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* \endlicense
*/
#ifndef YASM_ARCH_H
#define YASM_ARCH_H

View file

@ -1,9 +1,12 @@
/**
* \file bytecode.h
* \file libyasm/bytecode.h
* \brief YASM bytecode interface.
*
* \rcs
* $IdPath$
* \endrcs
*
* \license
* Copyright (C) 2001 Peter Johnson
*
* Redistribution and use in source and binary forms, with or without
@ -26,6 +29,7 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* \endlicense
*/
#ifndef YASM_BYTECODE_H
#define YASM_BYTECODE_H

View file

@ -1,9 +1,12 @@
/**
* \file coretype.h
* \file libyasm/coretype.h
* \brief YASM core types and utility functions.
*
* \rcs
* $IdPath$
* \endrcs
*
* \license
* Copyright (C) 2001 Peter Johnson
*
* Redistribution and use in source and binary forms, with or without
@ -26,6 +29,7 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* \endlicense
*/
#ifndef YASM_CORETYPE_H
#define YASM_CORETYPE_H

View file

@ -1,9 +1,12 @@
/**
* \file errwarn.h
* \file libyasm/errwarn.h
* \brief YASM error and warning reporting interface.
*
* \rcs
* $IdPath$
* \endrcs
*
* \license
* Copyright (C) 2001 Peter Johnson
*
* Redistribution and use in source and binary forms, with or without
@ -26,6 +29,7 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* \endlicense
*/
#ifndef YASM_ERRWARN_H
#define YASM_ERRWARN_H

View file

@ -1,9 +1,12 @@
/**
* \file expr.h
* \brief YASM expression interface
* \file libyasm/expr.h
* \brief YASM expression interface.
*
* \rcs
* $IdPath$
* \endrcs
*
* \license
* Copyright (C) 2001 Michael Urman, Peter Johnson
*
* Redistribution and use in source and binary forms, with or without
@ -26,6 +29,7 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* \endlicense
*/
#ifndef YASM_EXPR_H
#define YASM_EXPR_H

View file

@ -1,9 +1,12 @@
/**
* \file file.h
* \file libyasm/file.h
* \brief YASM big and little endian file interface.
*
* $IdPath: yasm/libyasm/file.h,v 1.12 2003/03/13 06:54:19 peter Exp $
* \rcs
* $IdPath$
* \endrcs
*
* \license
* Copyright (C) 2001 Peter Johnson
*
* Redistribution and use in source and binary forms, with or without
@ -26,6 +29,7 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* \endlicense
*/
#ifndef YASM_FILE_H
#define YASM_FILE_H

View file

@ -1,9 +1,12 @@
/**
* \file floatnum.h
* \file libyasm/floatnum.h
* \brief YASM floating point (IEEE) interface.
*
* $IdPath: yasm/libyasm/floatnum.h,v 1.20 2003/03/13 06:54:19 peter Exp $
* \rcs
* $IdPath$
* \endrcs
*
* \license
* Copyright (C) 2001 Peter Johnson
*
* Based on public-domain x86 assembly code by Randall Hyde (8/28/91).
@ -28,6 +31,7 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* \endlicense
*/
#ifndef YASM_FLOATNUM_H
#define YASM_FLOATNUM_H

View file

@ -1,9 +1,12 @@
/**
* \file intnum.h
* \file libyasm/intnum.h
* \brief YASM integer number interface.
*
* \rcs
* $IdPath$
* \endrcs
*
* \license
* Copyright (C) 2001 Peter Johnson
*
* Redistribution and use in source and binary forms, with or without
@ -26,6 +29,7 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* \endlicense
*/
#ifndef YASM_INTNUM_H
#define YASM_INTNUM_H

View file

@ -1,9 +1,12 @@
/**
* \file section.h
* \file libyasm/section.h
* \brief YASM section interface.
*
* \rcs
* $IdPath$
* \endrcs
*
* \license
* Copyright (C) 2001 Peter Johnson
*
* Redistribution and use in source and binary forms, with or without
@ -26,6 +29,7 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* \endlicense
*/
#ifndef YASM_SECTION_H
#define YASM_SECTION_H

View file

@ -1,9 +1,12 @@
/**
* \file symrec.h
* \file libyasm/symrec.h
* \brief YASM symbol table interface.
*
* \rcs
* $IdPath$
* \endrcs
*
* \license
* Copyright (C) 2001 Michael Urman, Peter Johnson
*
* Redistribution and use in source and binary forms, with or without
@ -26,6 +29,7 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* \endlicense
*/
#ifndef YASM_SYMREC_H
#define YASM_SYMREC_H

View file

@ -1,9 +1,12 @@
/**
* \file valparam.h
* \file libyasm/valparam.h
* \brief YASM value/parameter interface.
*
* $IdPath: yasm/libyasm/valparam.h,v 1.14 2003/05/05 03:42:10 peter Exp $
* \rcs
* $IdPath$
* \endrcs
*
* \license
* Copyright (C) 2001 Peter Johnson
*
* Redistribution and use in source and binary forms, with or without
@ -26,6 +29,7 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* \endlicense
*/
#ifndef YASM_VALPARAM_H
#define YASM_VALPARAM_H