P/Invoke is an implementation specification created by Microsoft of the Common Language Infrastructure (CLI) for invocation of native code libraries from managed code.
0
votes
3answers
66 views
PInvoke & Delphi
How can i use this dll function in c#? I tried the following but i get error.
"External component has thrown an exception."
First time i am doing this PInvoke stuff with C# and Delphi.
function ...
0
votes
1answer
23 views
WTSQueryUserToken always throws “An attempt was made to reference a token that does not exist” on Windows 7 in C#
I'm trying to launch a process from a Windows Service on Windows 7.
This is my code to obtain the user token.
uint sessionId = Kernel32.WTSGetActiveConsoleSessionId();
var userTokenPtr = new ...
2
votes
2answers
101 views
Calling a Delphi method in a dll from c#
I am trying to call a method in a Delphi DLL with the following signature:
function SMap4Ovr(const OverFileName : ShortString ;
const Aclay : Integer ...
0
votes
1answer
29 views
Disable Windows Visual Effects through SystemParametersInfo
I am trying to disable all visual effects programmatically in a Windows Forms App. Other than an extense list of registry values to be changed, i found this option, but I cant seem to get it to work.
...
0
votes
0answers
30 views
C# PInvoke flushall not giving any output, return value is 2
I was trying to follow a simple tutorial on C# PInvoke, and created the following program that should output the Test string.
[DllImport("msvcrt.dll", CallingConvention = CallingConvention.Cdecl)]
...
1
vote
0answers
21 views
should I just set SuppressUnmanagedCodeSecurity for maximum performance?
Am I correct that if I need maximum performance, and I have trusted library I should just set SuppressUnmanagedCodeSecurity attribute to all Dll imports I have?
I.e. convert such import:
...
0
votes
1answer
34 views
Call Win32 CalculatePopupWindowPosition from C#
I'm trying to call the WinAPI function CalculatePopupWindowPosition in C# using P/Invoke. From
http://msdn.microsoft.com/en-us/library/windows/desktop/dd565861(v=vs.85).aspx
I see that it's syntax ...
2
votes
1answer
48 views
Using a method from C that's pointer dependent in C#
I'm making a wrapper for a C library. There is a method that changes 2 ints by the user giving 2 int pointers to the method. So if I have void changenums(int* a, int* b) what is a safe way to access ...
0
votes
1answer
26 views
The main form is frozen after finishing copying file (with a progress indicator) using CopyFileEx?
I have a main form, this form has a button clicking on which will show the copying window with a progressbar. I use a thread to do the copying job, however after finishing the copying (the file is ...
0
votes
1answer
23 views
Worker role starts with reasonable memory usage but then memory usage increases constantly
I have a worker role which runs multiple threads(I used ThreadedWorkerRole). My worker role downloads some data and then images related to that data. Everything works fine locally but when I deploy ...
0
votes
2answers
28 views
Struct with explicit layout with LPWSTR and Structs
For a pinvoke call I need to make a struct equivalent of say the following:
typedef struct _Somenativestruct {
PCWSTR filename;
DWORD count;
DWORD anothercount;
AnEnumWithByteSize info;
union {
...
0
votes
2answers
42 views
C# Pinvoke of C Code issue
What I am trying to do: I have some embedded C code which does some signal processing. I also have a set of C# tools. I would like to use the C# code to be call the embedded C code with some waveforms ...
0
votes
0answers
29 views
VS Solution with C# project dependant on C project, best pratice [duplicate]
I have two projects with the full source code, one in C# and the other in C in one VS 2012 solution. The C# code is calling the C .dll via PInvoke.
I set the dependency on the solution level to tell ...
1
vote
1answer
45 views
Using SCardGetStatusChange to be notified of card insert/remove without polling
I'm trying to detect when a card has been inserted into a reader.
If I do a nasty polling loop like this:
public struct SCARD_READERSTATE
{
[MarshalAs(UnmanagedType.LPWStr)]
...
0
votes
0answers
37 views
Removing Aero style causes weird issues c# Windows 7 Windows Form
I have created a LayeredWindow (Aka tooltip window) That shows some feed.
I play with the transparency and opacity.
With aero style it works fine, I Can see the window wherever I put it on the ...
0
votes
0answers
18 views
Saving byte[] to unc file path (ADODB.Stream or PInvoke) with Silverlight5
At the Moment we are using the following code to write a Byte[] to a file:
using (dynamic adoCom = AutomationFactory.CreateObject(@"ADODB.Stream"))
{
adoCom.Type = adTypeBinary;
adoCom.Open();
...
-1
votes
0answers
59 views
CreateWindowEx failing after successful RegisterClass
Im tryin to create a Window through PInvoke using c# to create a fast natvie renderLoop. My Problem is that CreateWindowEx returns 0 all time. If i call GetLastError() it returns 1407(Error code for ...
0
votes
2answers
54 views
Why does a native windows button still show as disabled despite removing disabled style?
I am trying to automate the process of entering data on a particular dialog and then submitting the dialog, and the data entry part works fine, but when entering the data automatically the Accept ...
0
votes
0answers
40 views
GetBitmapBits fails to fill a byte array from .net Bitmap handle
I am trying to get a byte array of .net Bitmap which is passed to native side using Pinvoke , although that the header is retrieved correctly i mean height , stride and width , the ...
0
votes
0answers
36 views
OutOfMemoryException when unloading AppDomains after calling FreeLibrary
I have a plugin framework that needs to run plugins one at a time in a separate app domain. Some of these plugins may use unmanaged C++ dlls. Different plugins may depend on different versions of ...
0
votes
1answer
44 views
override default new operator for an array of a class C#
I am using pinvokes to call native code.
if I want to create an array of the native objects I currently do the following
public class MyClass() {
// allocate a single myClass;
public ...
0
votes
3answers
73 views
C# P/Invoke and array of structs containing byte arrays
I need to invoke a native DLL from C# code. As I am not very familiar with C/C++, I can't figure out how a structure defined in C should be declared in C# so it can be invoked. The problem is that two ...
0
votes
1answer
44 views
How to Specify Correct Marshaling for DLL Import in C#
I am using DLL Import to use some functionality in a C dll. The signature of the function is
int dllfunction(myfile **fptr, const char *filename, int *status);
What marshalling code goes into the ...
-1
votes
1answer
70 views
C# how to get the Windows monitor name
I'm trying to make a function that displays all display and monitor names.
But the 2nd time I call enumDisplayDevices, there's an error if the first argument is lpDisplayDevice.DeviceName. I know ...
2
votes
1answer
97 views
I use Delphi to call a DLL but still have an error
This is the invoke code
unit CY;
interface
uses windows;
type
TMember_Rd = Record
iID: integer;
sCode: Array[0..255] of char;
sName: Array[0..255] of char;
end;
PTMember_Rd = ...
2
votes
1answer
72 views
C# SearchByte Array inside Process Memory
I'm developing a little memory scanner for a specific application. When I select a process to scan, the first thing I want to do is to verify that the process is an instance that specific ...
0
votes
1answer
71 views
Using Stasm with C# - DllImport / Interop
I know this question has been asked before here and here, unfortunately, the answers provided were not able to solve my problem. I'm using Stasm (http://www.milbo.users.sonic.net/stasm/index.html) ...
0
votes
0answers
28 views
setnamedsecurityinfo works great on Win7 x64, fails on Win7 x86
The following method works fine on Win7 Pro SP1 x64, but when I run it on Win7 Pro SP1 x86 it fails when it gets to the //write the new owner comment
What are some reasons why it would work on one ...
2
votes
1answer
94 views
Returning a string from delphi dll to C# caller in 64 bit
I have a C# application which calls native Delphi dll using the following code:
C#
[DllImport("NativeDLL.dll", CharSet = CharSet.Unicode, CallingConvention = CallingConvention.StdCall)]
public ...
1
vote
3answers
66 views
C# GUI on top of C++ Application [closed]
I have a C++ console application which queries a server for data, parses the data, and does some computationally intensive processing of the data and stores the result in an object. I currently have a ...
1
vote
1answer
62 views
How can I p/invoke a function with a parameter that can accept many different types?
Have a look:
[DllImport("User32.dll")]
public static extern StatusCode DisplayConfigGetDeviceInfo(
ref IDisplayConfigInfo a
);
and now my structure that inherits from IDisplayConfigInfo:
var ...
0
votes
0answers
49 views
P/Invoke char* return by StringBuilder
platform: .net 3.5, vs2010, win7 64bit
c++ function(CppUtils.dll)
extern "C" __declspec(dllexport) bool __cdecl RecvChannel(CIPCChannel* channel, char *recvBuffer, unsigned &bufferSize)
{
...
1
vote
1answer
96 views
Read other process current directory in C#
I am trying to get current working directory of selected process. I am sure that it is possible, because tools like Process Explorer can show this information. I found out that this information is ...
0
votes
1answer
53 views
LogonUser call - does the user need login rights to that machine?
I've had a hard time locating much information on this method and so I thought I'd ask out here and see if you wonderful people could help.
What we basically have is this ...
...
1
vote
0answers
52 views
WinUSB asynchrous call in .NET with PInvoke
I have programmed a microcontroller with USB and connected it a PC using WinUSB. I am able to communicate with my uC in c++ and in VB.NET using pinvoke with synchronous (blocking, overlapped = NULL) ...
1
vote
2answers
67 views
Need Help Diagnosing a Failing P/Invoke Call Only on Windows XP
I have the following P/Invoke defined:
[DllImport("helper.dll", CallingConvention=CallingConvention.Cdecl,
CharSet=CharSet.Ansi, EntryPoint="F_GetValue")]
private static extern Int32 ...
1
vote
2answers
85 views
Accessing managed object in a c# callback passed to a native dll
I'm trying to pass a C# callback function to a native dll. It works fine, but I couldn't find a way to access the parent object of the callback method. Here's a code which demonstrates what I want to ...
0
votes
1answer
48 views
Communicating with Windows7 Display API
I have yet failed to find a decent(ANYTHING really) pinvoke wrapper around new win7 CCD api.
The api can be found itself from here: ...
2
votes
1answer
80 views
Porting C struct to C#
I'm Porting C code to C# and I have some doubts.
Consider this structure:
typedef struct
{
uint32_t w;
uint32_t h;
uint32_t f_cc;
uint32_t st;
unsigned char *pl[4];
...
0
votes
2answers
34 views
C# wrapper for NetworkIsolationEnumAppContainers
How can I create a c# wrapper to call:
[DllImport("FirewallAPI.dll")]
internal static extern uint NetworkIsolationEnumAppContainers(out uint pdwCntPublicACs, out IntPtr ppACs);
I'm ...
0
votes
0answers
44 views
Recover From Access Violation Exception
I am using EZTwain (an unmanaged dll) to process some PDF's. I am aware it can only read PDF's that it has created. Unfortunately in the real world it is encountering PDFs which have been created by ...
0
votes
1answer
35 views
PInvoke Unbalances the stack
I have a c++ function to be exported as a .dll to use:
static __declspec(dllexport) void DiagEncrypt(
UCHAR * ptrDataByte,
size_t numBytes,
ACCESS_LEVEL ...
3
votes
1answer
74 views
Buffer is allocated from a shared heap for the process that is 64 KB in size?
Would anyone be kind enough to translate this sentence for someone blissfully ignorant of unmanaged code and intricacies of memory management?
The storage for this buffer is
allocated from a ...
7
votes
4answers
98 views
Mapping unmanaged data to a managed structure in .NET
I have spent many hours working with unmanaged code, and platform invoke in .NET. The code below illustrates something that is puzzling me regarding how unmanaged data is mapped to a managed object in ...
0
votes
1answer
102 views
C# imports C++ Unmanaged dll and create multiple instance from one dll?
i have an unmanaged dll written in C++ which has a one simple function.
int temp =0;
int func1(void)
{
return temp +=2;
}
and exported function is
UNMANAGED_DLL1_API int recepret(void)
{
...
1
vote
0answers
82 views
CredUIPromptForCredentials from .NET with SecureString
I'd like to show the standard system dialog to ask the user for an account username and password to use this information to start a process with these credentials.
I've been pointed to the ...
0
votes
1answer
93 views
string array when c# dllimport from c/c++
[C/C++ Code]
extern "C" __declspec(dllexport) int Analyze_input_text(char* input_text, char *ppArray){
int size;
// code...
return size;
}
[C# Code]
...
1
vote
1answer
84 views
How can I call SHExtractIconsW from C#?
how to use SHExtractIconsW dll function in C#, I managed to do this in AutoIt,
Local $arResult = DllCall('shell32.dll', 'int', 'SHExtractIconsW', _
'wstr', $sIcon, _
'int', ...
1
vote
1answer
65 views
gdi32.GetObject doesn't work when running 64-bit
This code works fine when running 32-bit. But when I switch to 64-bit the GetObject method does not work and BITMAP struct is empty.
IntPtr hBmp = ObtainValidBitmapHandleFromSystem();
BITMAP bmpData ...
0
votes
2answers
115 views
Issue in PInvoke with char** parameter, String array is not working
I have a DLL file that is written in C. I tried to use it in managed code but some how my function is not working properly. Here is the C code.
int preProcessImagesC( char *p_trainingFilePath,
...




