I have read almost every example I could find via google, and couldn't accomplish the simplest task creating a dll
(windows) from nim
Could anyone explain it step by step?
I am using the nim
IDE - aporia
to produce the code.
Does building a dll
require the use of the command line? I guess there's a workaround.
using aporia IDE
\ command line
, how can one achive the same result as done by compiling code below to a dll
:
extern "C" __declspec(dllexport) int __stdcall return_multiply(int num1, int num2)
{
return num1 * num2;
}
that code as you probably know could be called from c#
proc
entry in a dll. steps to be taken : one needs to create a dll. <--- – Actinism