mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 06:32:48 +00:00
74c8506391
Also fix white spaces in led drivers, make led drivers use standard driver format. Begin work on translation driver. Add salamander files to gitignore.
22 lines
333 B
C
22 lines
333 B
C
#include "../ocr_driver.h"
|
|
|
|
static void* ocr_tesseract_init()
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static void ocr_tesseract_free(void* data)
|
|
{
|
|
}
|
|
|
|
char* ocr_tesseract_get_text(struct ocr_image_info image)
|
|
{
|
|
return "";
|
|
}
|
|
|
|
const ocr_driver_t ocr_tesseract = {
|
|
ocr_tesseract_init,
|
|
ocr_tesseract_free,
|
|
ocr_tesseract_get_text,
|
|
"tesseract"
|
|
}; |