At http://bazaar.launchpad.net/~ndb-connectors/ndb-connectors/ndbjmerge
------------------------------------------------------------
revno: 130
revision-id: mtaylor@stripped
parent: mtaylor@stripped
committer: Monty Taylor <mtaylor@stripped>
branch nick: ndbjmerge
timestamp: Wed 2007-07-25 17:44:39 -0700
message:
Modified csharp swig file - still doesn't quite work right.
modified:
csharp/ndbapi.i
svn-v2:10@5fca6d9a-db22-0410-b55c-899b0a28da89-trunk-csharp%2fndb.i
=== modified file 'csharp/ndbapi.i'
--- a/csharp/ndbapi.i 2007-05-06 03:22:10 +0000
+++ b/csharp/ndbapi.i 2007-07-26 00:44:39 +0000
@@ -37,7 +37,7 @@
}
return ret;
}
-
+/*
%typemap(in) (MYSQL_TIME *) {
if (PyDateTime_Check($input)) {
MYSQL_TIME * dt = (MYSQL_TIME *)malloc(sizeof(MYSQL_TIME));
@@ -54,10 +54,10 @@
NDB_exception(NdbApiException,"DateTime argument required!");
}
}
-
-%typemap(in) (const char* anInputString, size_t len) {
+*/
+//%typemap(in) (const char* anInputString, size_t len) {
/* Check that we are getting a string */
- if (PyString_Check($input)) {
+ /* if (PyString_Check($input)) {
// We are going to try not copying this string, since it's not going to
// be modified and we're going to copy it in the main function
$1=PyString_AsString($input);
@@ -66,7 +66,7 @@
NDB_exception(NdbApiException,"Couldn't convert argument");
}
}
-
+*/
%typemap(freearg) (MYSQL_TIME *) {
free((MYSQL_TIME *) $1);
}
@@ -169,9 +169,11 @@
%}
-%include "globals.i"
+%include "ndbglobals.i"
%include "NdbFactory.i"
+
%include "NdbClusterConnection.i"
+%include "NdbDictionary.i"
%include "Ndb.i"
@@ -183,8 +185,10 @@
%include "NdbOperation.i"
%include "NdbScanOperation.i"
+%include "NdbIndexScanOperation.i"
+%include "NdbEventOperation.i"
%include "NdbRecAttr.i"
%include "NdbError.i"
-
-
+%include "NdbBlob.i"
+%include "NdbScanFilter.i"
| Thread |
|---|
| • Rev 130: Modified csharp swig file - still doesn't quite work right. in http://bazaar.launchpad.net/~ndb-connectors/ndb-connectors/ndbjmerge | Monty Taylor | 26 Jul |