proto.h 346 B

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