如何使用匿名管道中的Windows API(和传递给GTK功能)?(How to use anony

2019-09-21 02:16发布

我需要能够通过表示FD(管FD)到int值GTK的功能的第一参数

gint gdk_input_add gint source,
         GdkInputCondition condition,
         GdkInputFunction function,
                       gpointer data);

我该怎么办,作为CreatePipe返回HANDLE这是不是整数?

谢谢

Answer 1:

要转换一个HANDLE值与C文件描述符,调用_open_osfhandle



文章来源: How to use anonymous pipes in windows api (and pass to gtk function)?