VisualIB  1.0
IBExpress library for making use of Borland IBExpress outside of C++Builder
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros
vibstring.h
Go to the documentation of this file.
1 
9 #ifndef VIBSTRING_H__
10 #define VIBSTRING_H__
11 
12 #include "vibdefines.h"
13 
18 struct VIBString
19 {
20  char *str;
21 };
22 
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26 
28 VIBDLLFUNC VIBString * VIBCALL VIBString_New(const char *str);
32 VIBDLLFUNC const char *VIBCALL VIBString_CStr(VIBString *str);
33 
34 #ifdef __cplusplus
35 }
36 #endif
37 
38 #endif
39 
40 // EOF
41