reference/ocr-new/status_message.h
changeset 0 6b8091ca909a
equal deleted inserted replaced
-1:000000000000 0:6b8091ca909a
       
     1 #ifndef STATUS_MESSAGE_H
       
     2 #define STATUS_MESSAGE_H 1
       
     3 #include "tcl_interface.h"
       
     4 
       
     5 
       
     6 extern double last_status;
       
     7 
       
     8 void set_string_status(char* s, int partial, int full);
       
     9 void set_string_status(char* s, double partial, double full);
       
    10 void set_display_status(int partial, int full);
       
    11 void set_rotation_status(int partial, int full);
       
    12 void set_read_status(int partial, int full);
       
    13 void set_display_status(double partial, double full);
       
    14 void set_rotation_status(double partial, double full);
       
    15 void set_read_status(double partial, double full);
       
    16 void set_recognize_status(int p, int f);
       
    17 void set_extract_status(int p, int f);
       
    18 void set_component_status(int p, int f);
       
    19 void set_spellcheck_status(int p, int f);
       
    20 void set_text_display_status(int p, int f);
       
    21 
       
    22 #endif
       
    23 
       
    24 
       
    25