proto.h 398 B

12345678910111213141516171819
  1. /* error.c */
  2. void init_error(void);
  3. void append_error(const char *);
  4. void report_error(void);
  5. /* cursor.c */
  6. cursor *alloc_cursor();
  7. void free_cursor(cursor *);
  8. /* describe.c */
  9. int describe_table(MYSQL_RES *, dbTable **, cursor *);
  10. void field_info(MYSQL_FIELD *, int *, int *);
  11. /* parse.c */
  12. int parse_conn(char *, CONNPAR *);
  13. /* replace.c */
  14. int replace_variables(char *, char **, char **);