Tagged Questions
The native-code tag has no wiki summary.
18
votes
19answers
2k views
If you were developing shareware softwares for windows, would you target the .Net Framework or use native code?
For the sake of the question, by 'shareware' I mean a software which is relatively
small in size (up to few dozens of mb) and available for download and evaluation
through a web site.
I'm asking ...
10
votes
1answer
5k views
how to use addr2line in android
I was stuck with my app, as i am unable to debug as it is a multithreaded one and crashes with error SIGSEGV. I get lot of information on logcat, which gives me addresses in my native library. It'll ...
6
votes
2answers
1k views
How to get Sampling rate and frequency of music file (MP3) in android?
I am developing audio player in android. So i want to add the details of the playing song i.e. Artist Name, Duration, Bit rate and sampling frequency.
I can get Artist Name and duration of a music ...
6
votes
3answers
718 views
5
votes
4answers
2k views
Android NativeActivity
The Android NDK has just been significantly expanded to include support for writing android applications entirely in native C/C++ code. One can now capture input events on the keyboard and touch ...
5
votes
5answers
178 views
How do I distribute C# apps to computers with an unknown version of .Net?
I wrote a small app that I need to distribute to 700+ computers, the problem being that the computers can be running any version of Windows (though most likely XP or better) with any version of .Net ...
4
votes
4answers
371 views
Exporting a native C function from a .net DLL?
I have a .net assembly written in C#, and I'm looking to export a native C function from the assembly.
I have an application which will perform a 'LoadLibrary()' on any DLL's found in a 'plugin' ...
4
votes
1answer
89 views
Attach to native code when debugging unit tests through ReSharper
When using ReSharper to debug NUnit tests from within Visual Studio 2008, is it possible to have the ReSharper test runner attach to the native code debugger? By default it only attaches the Visual ...
4
votes
1answer
197 views
Android book for gamedev
guys. I would like to learn a gamedev android programming (planning to go deep with native coding), please recommend a good book.
4
votes
4answers
251 views
Theoretically speaking , can I get the openJDK JIT , and compile my java code to native?
I just wonder how can I get rid of the java jre dependency and produce native code and deliver the compiled code as the application?
So does it possible?
P.S. I know about gcj compiler is it what ...
4
votes
3answers
154 views
jni starter question
I started looking into JNI and from what I understand is that if a problem occurs with the loaded dll, the jvm is possible to terminate on the spot.
I.e. the process can not be protected e.g. like ...
4
votes
3answers
493 views
C++/CLI performance compared to Native C++?
Good morning,
I am writting a spell checker which, for the case, is performance-critical. That being, and since I am planning to connect to a DB and making the GUI using C#, I wrote an edit-distance ...
4
votes
4answers
2k views
Compile JavaScript to Native Code with V8
Is it really possible, with Google's V8 Engine, to compile JavaScript into Native Code, save it as a binary file, and execute it whenever I want through my software envorinment, on any machine?
4
votes
1answer
187 views
How do you use the C language to produce a ruby gem?
I would like to see some source code or maybe a link to some that gives at least a stub for writing ruby gems in the C languages (C++?? is that possible too?)
Also, some of you may know that Facebook ...
3
votes
1answer
59 views
Is it possible to have win32 and x64 versions of native DLL in one file?
Suppose I have some code written in C++. I can produce two DLLs from the code: win32 version and x64 version.
Now I want to glue these two DLLs in one file and then load appropriate version in C# ...
3
votes
1answer
84 views
Why does calling ZwCreateKey in kernel mode seem to circumvent windows security?
The team I work with has recently been faced with the challenge of making our software compatible with a third party peice of virtualization software. This software uses a kernel driver to perform ...
3
votes
1answer
187 views
How does CreateStdDispatch know what method to invoke?
i'm faced with implementing an IDispatch interface. There are four methods, and fortunately 3 of them are easy:
function TIEEventsSink.GetTypeInfoCount(...): HResult;
{
Result := E_NOTIMPL;
}
...
3
votes
3answers
243 views
IPC with gui (Java & Native code)
My application is composed of 2 parts -
Some GUI logics in Java.
Native code (mainly Delphi) - the GUI implementation itself.
Java uses the native code for trivial operations such as opening windows ...
3
votes
2answers
356 views
Loading native dll (32bit) in in-process wmi provider(32 bit) on 64 bit OS
I am working on a in-process wmi provider which loads a native third party library using[DllImport]. The dll locations is fixed to c:\mydllpath. Before loading the dll I set current directory to the ...
3
votes
2answers
104 views
C++ Reads/Writes XML without CLR
I know this is a very stupid question and I'm very new to C++.
I'm developing Starcraft AI, it is DLL file. I'm trying to use XML to gather some data to the bot, however whenever I build the DLL ...
3
votes
1answer
93 views
How can I see the native code generated by CLR?
Is there any way to see the native code generated by CLR?
In java there is a option "-XX:+PrintOptoAssembly" to see the native code compiled by JIT. So is there any similar thing for CLR?
3
votes
2answers
529 views
Changing CIL code into Native code in C# [closed]
Possible Duplicate:
Is there some way to compile a .NET application to native code?
When you compile a C# application, it is compiled to CIL code, to be interpreted by the framework when it ...
2
votes
4answers
108 views
Impact of the Native Code development (Androide/iphone development)
I want to create an application in Androide as well as in ios. Now i have to use lot of native c++ code in my application.
so i want to know that will there any performance issues regarding the use ...
2
votes
1answer
108 views
Is there a tool that will combine a 32 bit + 64 bit application and pack them together in one 32+64 bit application
In Windows 2008 R2 server (server core installation) wow64 is no longer a required component.
I can compile a 32 bit application using the same source code as a 64 bit application (with a few ifdefs ...
2
votes
3answers
375 views
Tools for native memory leak analysis
I am suspecting a native memory leak in my java code. Are there any tools which do native memory profiling? Also, does any tool support native memory analysis of a running java process?
Thanks!!
...
2
votes
3answers
272 views
Can I create a Bitmap that uses malloced buffer I created in native code?
I have a piece of native code where I am mallocing (i.e. allocating) a buffer. I like to draw into this memory using Canvas draw operations.
But Canvas code uses Bitmap as its backing plane. I am ...
2
votes
2answers
114 views
Creating objects of a Class in a dll in Java
There is a third part dll with definitions of a class in C++ which I've to use in Java. I've the complete knowledge of the public methods in the dll. Now to use these I'm kind of using a wrapper C++ ...
2
votes
2answers
198 views
Native C++ performance using C# or within C#
I was wondering if the two following scenarios have the same performance impact on native C++ code (if there is any performance impact at all).
Let's assume I have the function cpp_calc() that is ...
2
votes
7answers
464 views
JVM performance vs native code [closed]
Java is slow.
That's more then an "urban legend", it's seems to be a fact. You don't use it for live-coding because of latency, you don't use it for clusters and parallel computing, and so. There are ...
2
votes
4answers
143 views
memory safety and security - sandboxing arbitrary program?
In some languages (Java, C# without unsafe code, ...) it is (should be) impossible to corrupt memory - no manual memory management, etc. This allows them to restrict resources (access to files, access ...
2
votes
2answers
202 views
Using native pointers in F# with WritableBitmap
Hello
I am trying to use WritableBitmap.BackBuffer as used in this example, see the section examples.
What I am trying to do really is write an int[] into a space a nativeint points to.
To be able ...
2
votes
3answers
578 views
How fast is VB .net compared to native code for arithmetic?
I need to write software that will do a lot of math. Mostly it will be matrix multiplication with integers to compute DCT. How much faster should I expect the code to run in native c as compared to ...
1
vote
0answers
39 views
Native extension .node in Windows to NodeJS
I built a .node extension in Windows using the following code (addon.node):
#include "v8.h"
#include "node.h"
extern "C" void NODE_EXTERN init (Handle<Object> target)
{
HandleScope ...
1
vote
0answers
156 views
Why is my char* getting cutoff at 256 characters between C# -> C++
I have to call an external library that is using some non-standard types, so I've created a C++ wrapper around this external library. To try to save some pain I've setup on of the arguments as a ...
1
vote
0answers
82 views
JavaScript tutorial for creating a carousel (that does not rely on a library)
I'm looking for a tutorial that demonstrates how to create a carousel using JavaScript.
I'm looking for something that is not dependent on a library, as I want to understand the code i'll be writing ...
1
vote
1answer
70 views
Access generated Android R class from native code
I'm wondering if there is a way to access R class attribute from native code, I need it to read some generated ID that may change every time i do a clean build of my project and I would prefer not to ...
1
vote
2answers
114 views
Monotouch mtouch arguments problems
Having trouble getting these two arguments to play nice when compiling a project. Any help would be much appreciated.
-gcc_flags "-L${ProjectDir} -lflite -all_load" -nosymbolstrip -nostrip -cxx ...
1
vote
1answer
44 views
How do I build basic JNI app? [closed]
I followed examples from java.sun.com to build sample jni app, but I've got problems. I intend to use unix with gcc. How do I compile *.c file with native function to have library? What parameters ...
1
vote
1answer
117 views
Using resource string table in unmanaged dll from managed code
I have an unmanaged MFC application. I have written a CLI wrapper for the application and converted into a DLL. The unamanged code has string table resources that is used to display messages here and ...
1
vote
2answers
159 views
Debug native Android code
I'm using Sequoyah to debug native code on Android under eclipse. It works fine if libraries were built with NDK and were located in the project's folder. But there are some libs which were built on ...
1
vote
0answers
104 views
“Exit command”(back to mainprogram) on my NDK-android thread
I'm running a main program. I have a button to start native-activity(http://developer.android.com/reference/android/app/NativeActivity.html)
I am looking for a command to return back to my main ...
1
vote
2answers
182 views
How do I catch c0000005 exception from native dll in c#
I'm working with a native dll that somewhere throws a c0000005 exception (access violation) and ends up crashing my web service until the service is recycled. Is there a way to catch the exception?
1
vote
1answer
254 views
Which Java native compilers can be recommended?
I would like to know which Java native compilers can be recommended to compile Java code to Windows and Mac OS X binaries.
Maybe someone knows which compilers have been used to create the Eclipse ...
1
vote
1answer
84 views
Eclipse doesn't copy my native libs
I'm trying to build a plugin that contains some native libraries.
The project has the standard maven layout but is currently not configured as a maven project for m2e. (I will do this after eclipse ...
1
vote
2answers
348 views
ARM Assembly code in an Android project
I'm not particularly experienced with Assembly and ARM, but I was able to write a few routines in it and I'd like to see how they run on an ARM-equipped Android device (Nexus S). What is the procedure ...
1
vote
1answer
90 views
How would you personally identify workstation by MAC address if there are several Ethernet adapters?
I have to identify workstation by unique identifier that must be stable. I decided to use MAC address but what shall I do if there are several ethernet adapters (some of them may belong to VMWare ...
1
vote
1answer
47 views
Make package for Android
Problem Description
I'm writing module for Android (JAVA) that use native code (C). In JAVA I have created Class "MyClass.java" and implement all functions and classes there, also I call loadLibrary ...
1
vote
1answer
204 views
Android native code from web browser using javascript
Is it possible to access android native code using javascript in the default android browser?
Regards,
Dom
1
vote
1answer
74 views
How do I Call Native Code From (MIT) Scheme?
How do I call a native function (say, MessageBox) from Scheme?
1
vote
1answer
324 views
disassembly of C#: why is DUMPBIN native code so different from Debug's Disassembly?
Suppose this is my program simpleCsharp.exe:
namespace simpleCsharp
{
public class Program
{
public static int Main(string[] args)
{
uint x = 0xFEFEFE;
...