我想在 C# 中实现 Mongoose (http://code.google.com/p/mongoose/) 绑定。有一些示例,但它们不适用于当前版本。
这是我当前的函数调用:
[DllImport("_mongoose",CallingConvention=CallingConvention.Cdecl)] private static extern IntPtr mg_start(int zero, Nullable, string options);
(工作)C等价物将是:
const char *options[] = {
"document_root", "/var/www",
"listening_ports", "80,443s",
NULL
};
struct mg_context *ctx = mg_start(&my_func, NULL, options);
其中 mg_start 定义为:
struct mg_context *mg_start(mg_callback_t callback, void *user_data,
const char **options);
您可以在这里找到整个 C 示例: https ://svn.apache.org/repos/asf/incubator/celix/trunk/remote_services/remote_service_admin_http/private/include/mongoose.h
如何转移const char *options[]
到 c#?
谢谢