5f0a38d22e
Change-Id: I53175dc6125b485c6007685938181a169f4d3b87
18 lines
364 B
Plaintext
18 lines
364 B
Plaintext
/*
|
|
* Copyright (C) 2023 The LineageOS Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
package com.fingerprints.extension@1.0;
|
|
|
|
interface ICalibrationCallback {
|
|
oneway onStatus(uint32_t code);
|
|
|
|
oneway onError(uint32_t error);
|
|
|
|
oneway onInitTransferData(uint32_t totalSize);
|
|
|
|
oneway onTransferData(vec<uint8_t> buffer, uint32_t remaning);
|
|
};
|