From 41150a8f8bed65a5a35a64fe8d8cdb9769b0aeb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vuka=C5=A1in=20Stepanovi=C4=87?= Date: Thu, 16 Feb 2023 15:02:24 +0000 Subject: [PATCH] re-add RXingResultPointCallback for backwards-compat --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 06bdab0..b83ada3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -38,6 +38,9 @@ pub use encode_hints::*; /// point in the barcode image such as a corner) is found. pub type PointCallback = Rc; +/** Temporary type to ease refactoring and keep backwards-compatibility */ +pub type RXingResultPointCallback = PointCallback; + mod decode_hints; pub use decode_hints::*;