Stephane Pellegrino
Stephane Pellegrino
Steps to reproduce: Create C# DLL within a folder TestDll ``` [DllExport] public int test() { return 0; } ``` - Open VS2019 and Test solution - Put"DllExport.bat" in same...
Hi, Get this when I'm trying to import into a dll a static jansson lib. (compiled with VS2017 x64, windows 10) > jansson.a.lib(value.c.obj) : error LNK2019: unresolved external symbol __imp__dclass...
Smart wrapper, Besides this, I noticed the use of writeFileSync() function. It may be a performance killer on huge database ... A limit of sql.js as I can see :(
Any chance to see a wonderful "CMakeLists.txt" one of these days ? :)
Not a real "issue", but do you plan to check GDI problems too ? That would be great ;)
Would be interesting to have a feature which would set croc into like a waiting-for-a-room-available mode...
In a small C program under Windows, I did this regexp: ... struct slre_cap caps[10]; const char *reg="(([a-z]+)/([a-z]+)@)?([a-z]+)(:(\d+))?"; const char *src = "server:4100"; slre_match(reg, src, strlen(src), caps, 10, 0); ......
This regexp is correct, but fails with slre : (([a-z_-]+)/([a-z@_-]+)@)?([a-z]+) A dirty way to "fix" it is to surround the last group with (...) (([a-z_-]+)/([a-z@_-]+)@)? ( ([a-z]+) )
With PHP 7.1 , 64 bit windows 11 `win32_pause_service(SERVICE_NAME);` seems ok, but... I noticed in the services.msc that my service remains "running" !?? In the running loop, the `win32_get_last_control_message()` always...
The "[Port forwarding](https://jadaptive.com/java-ssh-library/maverick-synergy/port-forwarding-java-ssh-example/)" sample does not work with this configuration: - Java 22 - Windows 11 - Last release of GraalVM (java 22.0.1-graal) Works perfectly with fat .jar (JVM), but...