WinRT 应用程序调用 win32 c++ dll 发送参数

WinRT app calling win32 c++ dll sending parameters

嘿,这是第一次使用 C++,请多关照 :)

我制作了一个 WinRT 应用程序,由于某种类型的 "sandbox" 它适用于那些应用程序,我无法访问除此之外的任何内容(比如我想访问的 - 我的桌面应用程序。

所以在这里和那里阅读时我发现,如果您创建一个 C++ Dll 并从 WinRT 应用程序调用它,那么您就可以在 "sandbox" 之外进行调用。但是这里有个小问题。

我目前收到以下错误:

Error CS1660 Cannot convert lambda expression to type 'string' because it is not a delegate type.

在此处使用此代码:

void Header_Click(object sender, RoutedEventArgs e)
{
    DisplayFromDLL("tester", s =>
    {
        // response is returned in s - do what you want with it
    });
}

DisplayFromDLL 是抛出该错误的地方。 "s".

更是如此

所以我必须调用 dll 的 C# 代码如下所示:

public sealed partial class GroupedItemsPage : Page
{
    [DllImport("Win32Project1.dll", EntryPoint = "DisplayFromDLL", CallingConvention = CallingConvention.StdCall)]
    public static extern void DisplayFromDLL(string name, String response);

    void Header_Click(object sender, RoutedEventArgs e)
    {
        DisplayFromDLL("tester", s =>
        {
            // response is returned in s
        });
    }

和C++ dll代码:

extern "C"
{
    __declspec(dllexport) void DisplayFromDLL(const char name)
    {
        MessageBox("name is: " + name, "Msg title", MB_OK | MB_ICONQUESTION);
    }
}

所以一些帮助会很好,看看是哪一方导致了错误,以及修复它的情况可能是什么。

你的定义(在DLL中)、声明(在c#端)和实际调用根本不匹配。

你定义的函数接受一个字符,你的声明说它接受两个字符串,但你的调用提供了一个字符串和一个函数。

使所有这些匹配。

好吧,我想我在这里找到了实现目标的好方法。

我在 C# 中添加了一个简单的小型 Web 服务器,WinRT 可以调用它。执行此调用允许我 运行 在 外部 WinRT 应用程序的沙箱中需要的任何东西。

这是 Web 服务器 C# 代码 (SimpleWebServer.cs):

using System;
using System.Net;
using System.Text;
using System.Threading;

namespace smallWS
{
    public class WebServer
    {
        private readonly HttpListener _listener = new HttpListener();
        private readonly Func<HttpListenerRequest, string> _responderMethod;

        public WebServer(string[] prefixes, Func<HttpListenerRequest, string> method)
        {
            if (!HttpListener.IsSupported)
                throw new NotSupportedException("Needs Windows XP SP2, Server 2003 or later.");

            if (prefixes == null || prefixes.Length == 0)
                throw new ArgumentException("prefixes");

            if (method == null)
                throw new ArgumentException("method");

            foreach (string s in prefixes)
                _listener.Prefixes.Add(s);

            _responderMethod = method;
            _listener.Start();
        }

        public WebServer(Func<HttpListenerRequest, string> method, params string[] prefixes)
            : this(prefixes, method) { }

        public void Run()
        {
            ThreadPool.QueueUserWorkItem((o) =>
            {
                Console.WriteLine("Webserver running...");
                try
                {
                    while (_listener.IsListening)
                    {
                        ThreadPool.QueueUserWorkItem((c) =>
                        {
                            var ctx = c as HttpListenerContext;
                            try
                            {
                                string rstr = _responderMethod(ctx.Request);
                                byte[] buf = Encoding.UTF8.GetBytes(rstr);
                                ctx.Response.ContentLength64 = buf.Length;
                                ctx.Response.OutputStream.Write(buf, 0, buf.Length);
                            }
                            catch { }
                            finally
                            {
                                ctx.Response.OutputStream.Close();
                            }
                        }, _listener.GetContext());
                    }
                }
                catch { }
            });
        }

        public void Stop()
        {
            _listener.Stop();
            _listener.Close();
        }
    }
}

还有 Program.cs:

using System;
using System.Diagnostics;
using System.Linq;
using System.Net;

namespace smallWS
{
    class Program
    {
        static void Main(string[] args)
        {
            WebServer ws = new WebServer(SendResponse, "http://localhost:8080/metroData/");
            ws.Run();
            Console.WriteLine("Webserver online. Press a key to quit.");

            Console.ReadKey();
            ws.Stop();
        }

        public static string SendResponse(HttpListenerRequest request)
        {
            Process.Start("C:\windows\system32\notepad.exe");
            var dictionary = request.RawUrl.Replace("/metroData/", "").Replace("?", "").Split('&').ToDictionary(x => x.Split('=')[0], x => x.Split('=')[1]);
            return string.Format("<HTML><BODY>My web page.<br>{0}</BODY></HTML>", DateTime.Now);
        }
    }
}

现在 GroupedItemsPage.xaml:

String mainURL = "http://localhost:8080/metroData/?";

async void Header_Click(object sender, RoutedEventArgs e)
    {
        var group = (sender as FrameworkElement).DataContext;

        HttpClient httpClient = new HttpClient();
        HttpResponseMessage response = await httpClient.GetAsync(new Uri(mainURL + "something=here&this=that"));
        string responseText = await response.Content.ReadAsStringAsync();
    }

如果 UWP 沙箱的限制妨碍了您的设计,开发桌面应用程序。对于在 UI 设计方面最接近 UWP 的平台,请选择 WPF。您仍然可以通过桌面桥将其发布到商店。