Tagged Questions
2
votes
1answer
281 views
C++ calling a ref-class function (mixed code)
I have an application (CLI) that references a mixed-DLL.
The DLL implements a "ref" class with static functions.
Here is the (partial) code for the ref-class
public ref class AAA
{
public:
static ...
2
votes
4answers
931 views
C++ in mobile apps. How does it works
Tell me.
How is executed binaries (written in c++ ForExample) in mobiles??
Is it only possible as mixed with J2ME or is it possible to execute "RAW" (like exe file) binary.
(In old and new mobiles)
...
1
vote
1answer
228 views
boost::operators mixed arithmetic
based on the example here http://www.boost.org/doc/libs/release/libs/utility/operators.htm#example, I have implemented the following derived class of boost::numeric::ublas::vector:
namespace ...
1
vote
3answers
2k views
Visual Studio 2005 VB debugging with c++ dll - Mixed Language debugging
I have a vb project which calls functions in a dll.
The dll is created in a separate vs project (portaudio), which is written in c.
The dll c project compiles clean and builds the required dll, ...
1
vote
2answers
609 views
Mixed Language Programming, VB and C++, noob problems with API and pointers
My problem is with understanding the finer point of mixed langage programming
and accessing API's in external libraries. My skills at C++ are nonexistent
and at VB, mediocre.
I have a c++ dll ...