Results 183 comments of Kang Lin

1、facedetection_export.h 是运行cmake之后产生出来的,主要是针对 windows DLL 导出函数。它申明了 FACEDETECTION_EXPORT 。 2、windows dll 导出函数需要 __declspec(dllexport) 声明,只有声明后,函数才会从DLL中导出,未声明的函数,做为DLL的私有函数,是不会从DLL中导出的(你可以把DLL看成class, __declspec(dllexport) 看成 public) 。当其它程序引用时,需要 __declspec(dllimport) 声明。 3、extern "C" 是用来指示C++函数编译时,用C格式修饰。 C++ 与 C 语言在编译时,函数修饰的格式是不一样的,为了能使C语言调用C++函数,所以需要加extern "C"

我建议使用库的形式使用本项目,不要使用源码形式。当你需要在其它项目中以源码形式使用 libfacedectection 时,需要定义 FACEDETECTION_EXPORT 宏:你可以使用下列方法之一: 1、先编译本项目,然后把生成的 facedetection_export.h 和源码一起复制到其它项目。 2、增加 facedetection_export.h 文件,在其中定义宏 FACEDETECTION_EXPORT #define FACEDETECTION_EXPORT

This file is produced by the CMAKE configure phase. please learn cmake. At 2022-06-11 20:02:10, "MChau2402" ***@***.***> wrote: Hi everyone, I can't find facedetection_export.h here. Please, can you help me...

> I don't use KDE, so not sure why this is failing here. It works here on GNOME (which uses the same original function, but with different arguments). There are...

uri-lists format: https://www.rfc-editor.org/rfc/rfc2483#section-5 The format of text/uri-list resources is: 1) Any lines beginning with the '#' character are comment lines and are ignored during processing. (Note that URIs may contain...

@jackyzy823 Yes, your code is correct. but @akallabeth has been modified it in 453d3b4c8b5b1d0cf4d36d0ea1f5008cf7cdee7e . I see #7754 . should be modified `x-special/gnome-copied-files`, not text/uri-list . @pnowack has been modified...

@jackyzy823 @pnowack Whether or not other software converts \n to \r\n correctly. We MUST follow the RFC. About URI: Please see https://datatracker.ietf.org/doc/html/rfc8089#appendix-E.2 and https://datatracker.ietf.org/doc/html/rfc8089#appendix-F o A traditional file URI for...

> First of all. RFCs are not Standards. What is standards? > For `file:` In this situation (implmenting copy file from remote to local) `uri-list` is only used under POSIX...

> > [My program](https://github.com/KangLin/RabbitRemoteControl/tree/develop) is used the situation. It is run in multi-os(include Windows). > > This code only used on xfreerdp client , so do xfreerdp client run on...