16 lines
434 B
C++
16 lines
434 B
C++
// Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
|
|
#ifndef __COMMON_ADDRESS_H__
|
|
#define __COMMON_ADDRESS_H__
|
|
|
|
#include <cstdint>
|
|
|
|
typedef struct vendor_qti_hardware_display_common_Address {
|
|
// Pointer address
|
|
// Use utility function to access pointer
|
|
uint64_t addressPointer;
|
|
} vendor_qti_hardware_display_common_Address;
|
|
|
|
#endif // __COMMON_ADDRESS_H__
|