We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
Nothing special for python; at least for today.
For python you need ctypes use: https://docs.python.org/3/library/ctypes.html#module-ctypes
And since regXwild exports the following functions (C-mangling): https://github.com/3F/regXwild/blob/master/regXwild/regXwildAPI.h
For example, for:
bool searchEssC(const TCHAR* data, const TCHAR* filter, bool ignoreCase);
and for Unicode module (latest versions also distributed with MultiByte) it can be as below ~
import ctypes regXwild = ctypes.cdll.LoadLibrary('regXwild.dll') wstr = ctypes.c_wchar_p("TV_[11_of_24]"); icase = ctypes.c_bool(0) regXwild.searchEssC(wstr, ctypes.c_wchar_p("1?_*24"), icase)
Let me know if you still have some problems.
Sorry, something went wrong.
Great
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: