Erin Genovy
Erin Genovy
> It seems like we really want `__declspec(import)` (not `export`!) on the non-defining declaration. Is there a macro for that? There is a `U_IMPORT` macro. Perhaps that would work? (Aside:...
Hm, my reading of `utypes.h` is like this: In the file `i18n\number_decnum.h` the macro `U_I18N_API` is defined as `U_EXPORT`, since inside the i18n library the macro `U_I18N_IMPLEMENTATION` is defined. (Or...
> Who defines `U_I18N_IMPLEMENTATION`? Oh, does the build system add that? Right. For the MSVC builds it is defined in the `.vcxproj` file for the i18n library. (See the line...
At the moment, I'm not sure if it is possible to do this with the restrictions imposed by MSVC.
To be honest, I don't think this problem is specific to Electron -- this is more of a limitation of Chromium itself. For example, there have been similar or related...
> I also tried latest version on: > Windows 10 - everything works good - as it expected. > Windows 2008 R2 Enterprise - the behavior is the same as...
The value of 0 for cpu comes from here: https://github.com/nodejs/node/blob/a51436cbea0d216f260453321a15fdce72ee28d3/deps/icu-small/source/tools/toolutil/pkg_genc.cpp#L787 From the comment in the file: ```c++ // link.exe will link an IMAGE_FILE_MACHINE_UNKNOWN data-only .obj file // no matter what...
FWIW, it looks like this question came up ~2 years ago, and the suggestion at the time was to try and use the .NET version. https://github.com/microsoft/Recognizers-Text/discussions/2725 I'm wondering if there...
Thank you for the reply! Just to make sure I understand, are you saying that it was the "pattern matcher" functionality that was ported to C++ as part of the...
Thanks for the reply. In our case we are primarily interested in the Date/Time parsing of user input(s), and also the handling of different languages for the inputs too. The...