0
votes
1answer
64 views

How to send a struct by ref containing a string from C# to unmanaged C++ library

I need to send a struct from C# managed code to a C library. The C library will populate the values in the struct. I have been trying to pass the struct as a reference so that the C# code will get ...
1
vote
0answers
141 views

c# read file descriptor from c pipe() function

I am creating a C pipe in C code using a function like this: extern int *create_pipe() { int *_pipe = (int *)malloc(2 * sizeof(int)); pipe(_pipe); return _pipe; } I have a binding to this ...
6
votes
2answers
294 views

Is there a memcmp equivalent for comparing byte arrays in Mono?

There is a well-known efficiency for comparing two byte-arrays in .Net by importing the memcmp function from msvcrt.dll, as described here. Is there an equivalent library import in mono? Would it ...
1
vote
1answer
101 views

MonoMac NSDrawThreePartImage / C Bindings

I'd like to use the function NSDrawThreePartImage (Application Kit Functions Reference) in my MonoMac application. However, it's not available to me. Looking at the source for NSCell.cs, I can see ...
0
votes
0answers
145 views

SWIG: How to wrap byte[] structure member

I'm using Swig 2.0.7 and trying to wrap a C library with SWIG to access it from C#. This C library communicates with some custom hardware via USB, and so I need to be able to send/receive raw byte[] ...
0
votes
1answer
163 views

Using Linux C code and header files to compile a Windows DLL

I would like to know if in general it is possible to create a C++ DLL with Visual C++ 2010 starting from C code and the header files I find in a Linux distribution. Theoretically, if I take a piece ...
0
votes
0answers
247 views

Read Write issues with Pseudo Terminal in Linux

I am writing a C++ program that would interact with an external process. The external process is written in C# and runs on mono. Note that I cannot modify the C# code as it is not a program written by ...
1
vote
1answer
384 views

Error - Cross Compiling Mono for Blackberry OS 10

I'm trying to compile this version of Mono (https://github.com/roblillack/mono/tree/qnx-2-10-9) for the emulator of BB OS 10 But i have the nex error: libmonosgen_2_0_la-mini.lo ...
0
votes
1answer
99 views

Equivalent of mono_string_to_utf8() without allocation and data copy

I am trying to replace the C code below by something more efficient: void mstr2str(MonoString *mstr) { char *str = mono_string_to_utf8(mstr); printf("mono string: %s\n", str); g_free(str); } ...
0
votes
0answers
166 views

c Library Not Found in Mono for Android Simulator via Visual Studio

I'm using Mono for Android with C# and VS 2010. Using the sample app Hello4MA, which deployed to the simulator and worked, I added a c project that creates a static library wrapped by SWIG. (The ...
0
votes
1answer
192 views

MarshalDirectiveException at (wrapper managed-to-native)

I found this bug error while building an application for iPhone using c#. This application has a plugin that passes System.Object instance to c.I got this and Im not sure what part is missing! Here ...
1
vote
1answer
82 views

How to get an array field from an object when embedding mono

I am embedding mono into an application i'm writing. One of the objects I have created looks like this: public class MessageObject { public byte messagetype; public byte[] message; } If i use ...
10
votes
1answer
163 views

embedding mono with C# “out parameters”

I'm trying to embed a C# class in a C application using libmono, but the documentation is a bit lacking. I'm trying to call a method with the prototype void MessageToSend(out MessageObject message); ...
2
votes
1answer
65 views

mono_field_set_value doesn't work

I'm trying to embed mono in an application i'm writing, but mono_field_set_value doesn't behave like I think it should. Here is an example: monotest.c: #include <mono/jit/jit.h> #include ...
1
vote
1answer
121 views

When are C# objects garbage collected when using Embedded Mono (libmono-2.0)

I am using libmono to call a C# object from my C code. Some of the methods for that object take Object parameters. So for instance, to call an object with an array parameter, i use MonoArray *data = ...
0
votes
1answer
95 views

Mono embedding: How to access type of a property in C/C++

i am embedding Mono to use it for scripting in my application. I would like to access properties. To make sure the type my application expects is equivalent to the type of some property i need to ...
1
vote
2answers
540 views

Compilling mono as static library

I want to compile libmono as static library at Windows. Target platform is Windows x86. Build environment: Windows 7 64-bit, VC++ Express 2010 What i have already done. 1) Downloaded mono 2.10.8 ...
2
votes
1answer
192 views

Unloading Mono domains in multithreaded context

I have a multithreaded application that activate multiple Mono domains from native code. Each domain has it's own thread. I use the following code to activate a domain: ///Create a new domain. ...
1
vote
0answers
436 views

Generate project files for MonoDevelop using CMake

I have used Visual C++ for a while and set up my project to build using CMake. I was considering using an open source alternative IDE, MonoDevelop. However, I can't open vcxproj files using ...
0
votes
2answers
137 views

libgdiplus compilation error

When I try to compile libgdiplus, I get the following error message. I use CentOS and don't have permission to run yum to install packages. My only option is to compile it from the source. ...
0
votes
1answer
123 views

Where can i find the Linux counterparts for the Windows Console API functions?

Where can i find the Linux (calling C function from Mono-C#) counterparts for the next Windows Console API functions: ReadConsoleOutput WriteConsoleOutput ReadConsoleInput - with mouse support in ...
1
vote
1answer
212 views

How to get filenames and line numbers in stack traces from embedded Mono?

I'm embedding Mono into a C application, and it works fine, but debugging is more difficult than it should be because when I print a stack trace in the Mono code (for example, in response to an ...
7
votes
3answers
1k views

pinvoke: How to free a malloc'd string?

In a C dll, I have a function like this: char* GetSomeText(char* szInputText) { char* ptrReturnValue = (char*) malloc(strlen(szInputText) * 1000); // Actually done after parsemarkup with the ...
0
votes
2answers
252 views

How to find the definition of a function or a class name using grep or find?

I am new to Linux development and I have to work with Mono project on Linux. I have the following function declaration: static MonoString *ves_icall_System_MonoType_getFullName (MonoReflectionType ...
2
votes
3answers
245 views

Mono C# PInvoke - Get CFString from external lib

I have a lib that returns a CFString, and I'm trying to get that string value in C#.. The problem is that I don't know how to do this in C#.. Making the external function return a CFString won't work ...
1
vote
1answer
482 views

Error when starting a new thread and opening dialog using Mono API

I'm working on a Native dll written in C++ that uses mono to show a graphical user interface. I've written a simple skeleton, it works but I get an error under certain conditions. First here is the ...
7
votes
2answers
213 views

(Embedding Mono) Parallel activation of domains

I'm wondering if it's possible to activate multiple Mono domains and execute them in parallel from native code: I use the following code to activate a domain: ///Create a new domain. m_domain = ...
2
votes
1answer
227 views

Mono 2.8.1 assertion mono_wsq_count (wsq) == 0

we are currently having serious problems running a pure c# application on mono 2.8.1 on debian 5. We are using .net webservices as well as async sockets and probably found a race condition in the ...
2
votes
2answers
413 views

Using Mono SGen Garbage collector in C/C++ programs

Is it possible to use SGen garbage collector (from the mono runtime) in coventionnal C/C++ programs ? I think mono used also the Boehm-Demers-Weiser conservative garbage collector that can be used in ...
0
votes
2answers
200 views

call mono_method(pointer) from c

i have mono code public static unsafe int* mono_method (int* p) { //.... return p; } and want to call it from native c MonoObject *result = mono_runtime_invoke(mono_method, NULL, args, ...
0
votes
2answers
483 views

passing (function) pointers between c and mono

Hi after refering to http://www.mono-project.com/Embedding_Mono i can call methods from managed code by using mono_runtime_invoke. Now i want to call a method in the managed code with a function ...
2
votes
3answers
1k views

howto call c# (mono , .net) methods, delegates from native c

is it possible to call c# methods written in managed code (maybe in a class or a library) from a native c code (and how)? thx edit: with "c#" i mostly refer to mono or even portable.net and the OS ...
1
vote
1answer
1k views

howto import c library (.dll / .so) in c# (mono)

so i tried the tutorial from http://www.huronbox.com/~james/techdemos/cs-callback.html like some others i found but i am getting the same error over and over when it comes to access a function from ...
1
vote
2answers
590 views

Mono C to a running C# program

I'm looking at communicating between a C++ program and a C# program using Mono. On the Mono website they have some good examples of embedding Mono in a C program, starting the C# program, and then ...
4
votes
2answers
292 views

How can I most effectively share code between C and C# (both Mono and Silverlight)

Our desktop application consists of a Mono/.NET 3.5 back end that communicates via USB with a variety of devices and a Silverlight front end that communicates with the back end via sockets. The ...
0
votes
1answer
992 views

enable auto-completion for C in Mono Develop

I need to enable Auto completion for C programs in Mono - I think using CTAG? How can I do that?
6
votes
3answers
896 views

Access C global variable 'errno' from C#

Is it possible to access the "errno" variable in C# when P/Invoking? This is similar to Win32 GetLastError().
1
vote
7answers
217 views

Writing .NET object in C?

Is there a way to write an object in C/C++ that can be used from .NET? I would like to do it in a most simple way, the one used to extend basically all other languages, i.e. write an object in C, ...
1
vote
4answers
461 views

TextWriter.ReadToEnd vs. Unix wc Command

Another question re. Unicode, terminals and now C# and wc. If I write this simple piece of code int i=0; foreach(char c in Console.In.ReadToEnd()) { if(c!='\n') i++; } ...