English 中文(简体)
三. 后向另一进程开放
原标题:PostThreadMessage to another process

我想向另一个进程(特别是作为窗口服务)运行的线索发出信息。 我读到PostThreadMessage的文件,但我不清楚一些事情。

我如何为我的服务做好工作?

该系统仅对系统信息进行过滤(在0至0之间(WM_USER-1))。 为了向另一个进程发出其他信息(Sose >=WM_USER),你必须进行习俗约束。

我想发出我自己的信息,因此我如何这样做?

最佳回答

在这里,识字后不太理想。 找到线索的确是一个问题,因为你的服务将不得不进行不止一场的透视。 一种是执行这项服务,另一种是抽出一个需要读到电文的信息。 创建ToolHelp32Snapshot(S)可以列举透镜,但你仍然不知道这两个透镜中哪一个是抽水的。

而是使用一个指定管道。 “在您的服务中打造NamedPipe()”,使用电文模式,给管道一个“全球”的名称,以便在用户会议中得到体现。 用户代码可使用众所周知的管道名称连接管道。 你们可以寄出你们想要的东西,但你们必须避免点子,因为他们在服务过程中赢得了一定的效力。 成为信息的问题。

其它可能性是一表,与管道非常相似,但使用众所周知的港口号而不是名称,以及从处理中进行的交易。 如果你有复杂的物体,需要跨越边界,利用COM是一种好处。 如果你不掌握 COM。

问题回答

暂无回答




相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签