3.3 Header Section

This is an optional section.

Summary

This section contains Copyright and License notices for the INF file in comments that start the file.

This section is optional using a format of:

## @file Nt32.fdf
# Abstract
#
# Description
#
# Copyright
#
# License
#
##

Prototype

<Header>      :: = <Comment>*
                   "##" <Space> [<Space>] @file" <EOL>
                   [<Abstract>]
                   [<Description>]
                   <Copyright>+
                   "#" <EOL>
                   <License>+
                   "##" <EOL>
<Filename>    :: = <Word> "." <Extension>
<Abstract>    :: = "#" <MTS> <AsciiString> <EOL>
                   ["#" <EOL>]
<Description> :: = ["#" <MTS> <AsciiString> <EOL>]+
                   ["#" <EOL>]
<Copyright>   ::= "#" <MTS> <CopyName> <Date> "," <CompInfo> <EOL>
<CopyName>    ::= ["Portions" <MTS>] "Copyright (c)" <MTS>
<Date>        ::= <Year> [<TS> {<DateList>} {<DateRange>}]
<Year>        ::= "2" (0-9)(0-9)(0-9)
<DateList>    ::= <CommaSpace> <Year> [<CommaSpace> <Year>]*
<DateRange>   ::= "-" <TS> <Year>
<CompInfo>    ::= (0x20 - 0x7e)* <MTS> "All rights reserved."
                  [<TS> "<BR>"]
<License>     ::= ["#" <MTS> <AsciiString> <EOL>]+
                  ["#" <EOL>]

Example

## @file
# Emulation Platform Pseudo Flash Part
#
# The Emulation Platform can be used to debug individual modules,
# prior to creating a real platform. This also provides an example for
# how to create an FDF file.
#
# Copyright (c) 2006 - 2008, NoSuch Corporation. All rights reserved.
#
# This program and the accompanying materials are licensed and made
# available under the terms and conditions of the BSD License which
# accompanies this distribution. The full text of the license may be
# found at:
# http://opensource.org/licenses/bsd-license.php
#
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS
# OR IMPLIED.
#
##