microsoft/mu_feature_ffa

Public

mirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
2d8ac10050d373d1c4b45aea63f17d763a4fc3f0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

FfaFeaturePkg/Include/Library/TestServiceLib.h

50lines · modecode

1/** @file
2 Definitions for the Test Service
3
4 Copyright (c), Microsoft Corporation.
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7**/
8
9#ifndef TEST_SERVICE_LIB_H_
10#define TEST_SERVICE_LIB_H_
11
12#include <Base.h>
13#include <IndustryStandard/ArmFfaPartInfo.h>
14#include <Library/ArmSvcLib.h>
15#include <Library/ArmFfaLibEx.h>
16
17typedef INT32 TestStatus;
18
19/**
20 Initializes the Test service
21
22**/
23VOID
24TestServiceInit (
25 VOID
26 );
27
28/**
29 Deinitializes the Test service
30
31**/
32VOID
33TestServiceDeInit (
34 VOID
35 );
36
37/**
38 Handler for Test service commands
39
40 @param Request The incoming message
41 @param Response The outgoing message
42
43**/
44VOID
45TestServiceHandle (
46 DIRECT_MSG_ARGS_EX *Request,
47 DIRECT_MSG_ARGS_EX *Response
48 );
49
50#endif /* TEST_SERVICE_LIB_H_ */