summaryrefslogtreecommitdiffstats
path: root/perl-install/install/share
diff options
context:
space:
mode:
authorYuri Chornoivan <yurchor@ukr.net>2025-05-10 08:33:53 +0300
committerYuri Chornoivan <yurchor@ukr.net>2025-05-10 08:33:53 +0300
commite1f1ef57f2419ac589543e52a120fe3c51f0136e (patch)
tree552be9332de087cefc060c542c45bbec59da2ae1 /perl-install/install/share
parent1c34a02acff3d8a6fc083b8b8d7d03f538795cba (diff)
downloaddrakx-e1f1ef57f2419ac589543e52a120fe3c51f0136e.tar
drakx-e1f1ef57f2419ac589543e52a120fe3c51f0136e.tar.gz
drakx-e1f1ef57f2419ac589543e52a120fe3c51f0136e.tar.bz2
drakx-e1f1ef57f2419ac589543e52a120fe3c51f0136e.tar.xz
drakx-e1f1ef57f2419ac589543e52a120fe3c51f0136e.zip
Update Finnish translation from Tx
Diffstat (limited to 'perl-install/install/share')
0 files changed, 0 insertions, 0 deletions
="hl opt">); /* this must be called before exit of program */ void finish_frontend(void); void info_message(char *msg, ...) __attribute__ ((format (printf, 1, 2))); /* (blocks program) */ void error_message(char *msg, ...) __attribute__ ((format (printf, 1, 2))); /* (blocks program) */ /* (doesn't block program) * (this is not necessarily stackable, e.g. only one wait_message at a time) */ void wait_message(char *msg, ...) __attribute__ ((format (printf, 1, 2))); /* call this to finish the wait on wait_message */ void remove_wait_message(void); /* monitor progression of something (downloading a file, etc) * if size of progression is unknown, use `0' */ void init_progression(char *msg, int size); void update_progression(int current_size); void end_progression(void); enum frontend_return { RETURN_OK, RETURN_BACK, RETURN_ERROR }; /* Yes == RETURN_OK No == RETURN_ERROR Back == RETURN_BACK */ enum frontend_return ask_yes_no(char *msg); /* [elems] NULL terminated array of char* * [choice] address of a (unitialized) char* */ enum frontend_return ask_from_list(char *msg, char ** elems, char ** choice); enum frontend_return ask_from_list_comments(char *msg, char ** elems, char ** elems_comments, char ** choice); /* [questions] NULL terminated array of char* * [answers] address of a (unitialized) char**, will contain a non-NULL terminated array of char* * [callback_func] function called at most when the answers change; it can examine the array of char* and assign some new char* */ enum frontend_return ask_from_entries(char *msg, char ** questions, char *** answers, int entry_size, void (*callback_func)(char ** strings)); #endif