mirror of https://github.com/acidanthera/audk.git
27 lines
435 B
C
27 lines
435 B
C
|
/** @file
|
||
|
Token Generator
|
||
|
|
||
|
Copyright (c) 2021, Arm Limited. All rights reserved.<BR>
|
||
|
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
||
|
@par Glossary:
|
||
|
- Cm or CM - Configuration Manager
|
||
|
- Obj or OBJ - Object
|
||
|
**/
|
||
|
|
||
|
#ifndef TOKEN_GENERATOR_H_
|
||
|
#define TOKEN_GENERATOR_H_
|
||
|
|
||
|
/** Generate a token.
|
||
|
|
||
|
@return A token.
|
||
|
**/
|
||
|
CM_OBJECT_TOKEN
|
||
|
EFIAPI
|
||
|
GenerateToken (
|
||
|
VOID
|
||
|
);
|
||
|
|
||
|
#endif // TOKEN_GENERATOR_H_
|