// Copyright 2016 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #ifndef FXBARCODE_BC_LIBRARY_H_ #define FXBARCODE_BC_LIBRARY_H_ #include <stdint.h> enum class BC_TEXT_LOC : uint8_t { … }; enum class BC_TYPE : int8_t { … }; void BC_Library_Init(); void BC_Library_Destroy(); #endif // FXBARCODE_BC_LIBRARY_H_