Use this tag for questions about importing functions, data or objects from DLLs (Dynamic-link libraries).
i'm usually using Win32 API in c#.NET. But not declare all in one application. Sometimes usually using user32, sometimes …
c# winapi dllimport loadlibraryIn a project using a server.dll and a client.exe, I have dllexported a server symbol from the server …
c++ dllimport visual-c++-2005 declspecI am trying to add a C++ DLL to Windows Phone 8 framework in Visual Studio Express 2012. I have tried following …
c# dll visual-studio-2012 dllimport windows-phone-8In C# I have this: [DllImport("user32.dll", EntryPoint = "GetDesktopWindow")] public static extern IntPtr GetDesktopWindow(); I tried to convert to …
vb.net interop pinvoke dllimport c#-to-vb.netI have an external c++ dll to import using DLLImport. If my application is compiling in x64 I need to …
c# dllimport windows-7-x64A .NET application calls C dll. The C code allocates memory for a char array and returns this array as …
.net memory-management unmanaged dllimport