mirror of https://github.com/acidanthera/audk.git
Add in the OPTIONAL modifier.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6355 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e4508cd832
commit
410835874a
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Base Performance Library which provides no service.
|
Base Performance Library which provides no service.
|
||||||
|
|
||||||
Copyright (c) 2006, Intel Corporation<BR>
|
Copyright (c) 2006 - 2008, Intel Corporation<BR>
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -43,9 +43,9 @@
|
||||||
RETURN_STATUS
|
RETURN_STATUS
|
||||||
EFIAPI
|
EFIAPI
|
||||||
StartPerformanceMeasurement (
|
StartPerformanceMeasurement (
|
||||||
IN CONST VOID *Handle, OPTIONAL
|
IN CONST VOID *Handle, OPTIONAL
|
||||||
IN CONST CHAR8 *Token,
|
IN CONST CHAR8 *Token, OPTIONAL
|
||||||
IN CONST CHAR8 *Module,
|
IN CONST CHAR8 *Module, OPTIONAL
|
||||||
IN UINT64 TimeStamp
|
IN UINT64 TimeStamp
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
@ -79,8 +79,8 @@ RETURN_STATUS
|
||||||
EFIAPI
|
EFIAPI
|
||||||
EndPerformanceMeasurement (
|
EndPerformanceMeasurement (
|
||||||
IN CONST VOID *Handle, OPTIONAL
|
IN CONST VOID *Handle, OPTIONAL
|
||||||
IN CONST CHAR8 *Token,
|
IN CONST CHAR8 *Token, OPTIONAL
|
||||||
IN CONST CHAR8 *Module,
|
IN CONST CHAR8 *Module, OPTIONAL
|
||||||
IN UINT64 TimeStamp
|
IN UINT64 TimeStamp
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue