~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbxt/src/myxt_xt.h

  • Committer: Brian Aker
  • Date: 2010-06-28 16:17:36 UTC
  • mfrom: (1637.4.1 drizzle)
  • Revision ID: brian@gaz-20100628161736-eormhb2mnd551i2h
MergeĀ unused

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2005 PrimeBase Technologies GmbH
 
1
/* Copyright (c) 2005 PrimeBase Technologies GmbH
2
2
 *
3
3
 * PrimeBase XT
4
4
 *
14
14
 *
15
15
 * You should have received a copy of the GNU General Public License
16
16
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
18
 *
19
19
 * 2006-05-16   Paul McCullagh
20
20
 *
68
68
void            myxt_move_dictionary(XTDictionaryPtr dic, XTDictionaryPtr source_dic);
69
69
XTDDTable       *myxt_create_table_from_table(XTThreadPtr self, STRUCT_TABLE *my_tab);
70
70
 
71
 
void            myxt_static_convert_identifier(XTThreadPtr self, MX_CONST_CHARSET_INFO *cs, char *from, char *to, size_t to_len);
72
 
char            *myxt_convert_identifier(XTThreadPtr self, MX_CONST_CHARSET_INFO *cs, char *from);
 
71
void            myxt_static_convert_identifier(XTThreadPtr self, MX_CHARSET_INFO *cs, char *from, char *to, size_t to_len);
 
72
char            *myxt_convert_identifier(XTThreadPtr self, MX_CHARSET_INFO *cs, char *from);
73
73
void            myxt_static_convert_table_name(XTThreadPtr self, char *from, char *to, size_t to_len);
74
74
void            myxt_static_convert_file_name(char *from, char *to, size_t to_len);
75
75
char            *myxt_convert_table_name(XTThreadPtr self, char *from);
76
76
xtBool          myxt_temp_table_name(const char *table);
77
77
int                     myxt_strcasecmp(char * a, char *b);
78
 
int                     myxt_isspace(MX_CONST_CHARSET_INFO *cs, char a);
79
 
int                     myxt_ispunct(MX_CONST_CHARSET_INFO *cs, char a);
80
 
int                     myxt_isdigit(MX_CONST_CHARSET_INFO *cs, char a);
 
78
int                     myxt_isspace(MX_CHARSET_INFO *cs, char a);
 
79
int                     myxt_ispunct(MX_CHARSET_INFO *cs, char a);
 
80
int                     myxt_isdigit(MX_CHARSET_INFO *cs, char a);
81
81
 
82
 
MX_CONST_CHARSET_INFO *myxt_getcharset(bool convert);
 
82
MX_CHARSET_INFO *myxt_getcharset(bool convert);
83
83
 
84
84
xtBool          myxt_create_thread_possible();
85
85
void            *myxt_create_thread();