DavidZhiXing / DllExport

Unmanaged Exports ( .NET DllExport )

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DllExport

Unmanaged Exports ( .NET DllExport )

Copyright (c) 2009  Robert Giesecke
Copyright (c) 2016  Denis Kuzmin <entry.reg@gmail.com>

Build status NuGet package License

[DllExport("Init", CallingConvention.Cdecl)]
public static int entrypoint(IntPtr L)
{
    // ... should be called by lua script

    Lua.lua_pushcclosure(L, onProc, 0);
    Lua.lua_setglobal(L, "onKeyDown");

    return 0;
}
  • for work with unmanaged code (binding between .net and C/C++ etc.), see Conari
  • for convenient work with Lua, see LunaRoad
[DllExport("Init", CallingConvention.Cdecl)]
[DllExport(CallingConvention.StdCall)] //v1.1+
[DllExport("MyFunc")]
[DllExport]

Where to look ? v1.2+ provides dynamic definition of namespace, so you can use what you want ! for more details see here

    Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F

    000005B0                 00 C4 7B 01 00 00 00 2F 00 12 05       .Ä{..../...
    000005C0  00 00 02 00 00 00 00 00 00 00 00 00 00 00 26 00  ..............&.
    000005D0  20 02 00 00 00 00 00 00 00 49 2E 77 61 6E 74 2E   ........I.want.   <<<-
    000005E0  74 6F 2E 66 6C 79 00 00 00 00 00 00 00 00 00 00  to.fly..........  <<<-
    000005F0  00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 00  ................
    00000600  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    ...
    000007A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    000007B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    000007C0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    000007D0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    000007E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3C  ...............< 
    
      - - - -            
      byte-seq via chars: 
      + Identifier        = [32]bytes
      + size of buffer    = [ 4]bytes (range: 0000 - FFF9; reserved: FFFA - FFFF)
      + buffer of n size
      - - - -
      v1.2: 01F4 - allocated buffer size    

Initially, the original tool UnmanagedExports was distributed by Robert Giesecke as a closed-source tool under the MIT License:

Now, we will be more open ! all details here

License

It still under the MIT License (MIT) - be a free and open

How to get

Available variants:

  • NuGet PM: Install-Package DllExport
  • GetNuTool: msbuild gnt.core /p:ngpackages="DllExport" or gnt /p:ngpackages="DllExport"
  • NuGet Commandline: nuget install DllExport
  • /releases ( latest )
  • Nightly builds (/artifacts page). But remember: It can be unstable or not work at all. Use this for tests of latest changes.

How to Build

No requires additional steps for you, just build as you need.

Use build.bat if you need final NuGet package as a DllExport.<version>.nupkg etc.

  • You do not need to do anything inside IDE if you have installed this plugin.

How to Debug

For example, find the DllExport.MSBuild project in solution:

  • Properties > Debug:
    • Start Action: set as Start External program
      • Add full path to msbuild.exe, for example: C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe
    • Start Options > Command line arguments write for example:
"<path_to_SolutionFile_for_debugging>.sln" /t:Build /p:Configuration=<Configuration>

use additional Diagnostic key to msbuild if you need details from .targets

"<path_to_SolutionFile_for_debugging>.sln" /verbosity:Diagnostic /t:Rebuild /p:Configuration=<Configuration>

Go to Start Debugging. Now you can debug at runtime.

About

Unmanaged Exports ( .NET DllExport )

License:MIT License


Languages

Language:C# 99.7%Language:Batchfile 0.3%