summaryrefslogtreecommitdiff
path: root/VC++Files
diff options
context:
space:
mode:
authorunknown <wax@mysql.com>2004-06-08 12:35:22 +0600
committerunknown <wax@mysql.com>2004-06-08 12:35:22 +0600
commit3e159f3fc9dfc652a5338e6b564226717560add1 (patch)
treee22b8445c5d45f93e4960fefc2911bb6a43bcc84 /VC++Files
parent548f0240896b2cc10980cc77bd30133e8971c008 (diff)
downloadmariadb-git-3e159f3fc9dfc652a5338e6b564226717560add1.tar.gz
BUG#3439 problem with UDF functions
VC++Files/examples/udf_example/udf_example.def: Add definitions of init and deinit functions
Diffstat (limited to 'VC++Files')
-rw-r--r--VC++Files/examples/udf_example/udf_example.def19
1 files changed, 14 insertions, 5 deletions
diff --git a/VC++Files/examples/udf_example/udf_example.def b/VC++Files/examples/udf_example/udf_example.def
index c1cfeea63f8..9764343e5f2 100644
--- a/VC++Files/examples/udf_example/udf_example.def
+++ b/VC++Files/examples/udf_example/udf_example.def
@@ -2,8 +2,17 @@ LIBRARY MYUDF
DESCRIPTION 'MySQL Sample for UDF'
VERSION 1.0
EXPORTS
- metaphon
- myfunc_double
- myfunc_int
- sequence
- avgcost \ No newline at end of file
+ metaphon_init
+ metaphon_deinit
+ metaphon
+ myfunc_double_init
+ myfunc_double
+ myfunc_int
+ sequence_init
+ sequence_deinit
+ sequence
+ avgcost_init
+ avgcost_deinit
+ avgcost_reset
+ avgcost_add
+ avgcost