1
vote
4answers
207 views
Converting .NET App to x86 native code
There's a program written entirely in C# that targets .NET Framework 2.0.
Is there a way I could somehow compile (translate) managed EXE to a native one so it could be .NET-agnostic? I know there are …
0
votes
6answers
174 views
Programming languages that compile to native code and have the batteries included
What are the programming languages that compile to native code and which have provided a comprehensive library with them?
Libraries that includes functionality such as Networking, File IO, RegEx, …
1
vote
1answer
12 views
How to preload custom colors in SWT ColorDialog
Hi all,
my application users the SWT Color Cell Editor to set a color property. This class in turn users the native color dialog - which offers preset and custom colors.
My users are frustrated …
-7
votes
2answers
180 views
Can a java class member variable decleared as `native`?
For instance, is the following legal
public class Foo {
private native int bar;
}
0
votes
7answers
228 views
Visual Studio switches from disassembler to source each time I step
On one of my two computers I see following behaviour:
Each time I press F10 (Step over) or F11 (Step Into) in the disassembler window, the focus is switched to the source view, resulting in next F10 …
1
vote
4answers
50 views
Java Problem “UnsatisfiedLinkError”
I made a simple java program that sends bytes to the parallel port, which uses a .dll along with two other classes (pPort.java and ioPort.java) to accomplish it, and it works perfectly fine.
However, …
1
vote
2answers
78 views
How to close iphone Safari window before launching native app?
Easy enough to register a custom protocol handler so that a native app gets launched by a URL in Safari. However, doing this leaves the current browser window open. If the app then provides a link …
2
votes
7answers
231 views
C# without .NET Framework
Writing fast native applications, with API calls and etc, in a modern cross platform programming language like C# would be awesome, wouldn't it? For example if you want to write a simple utility for …
1
vote
3answers
93 views
Writing a native language compiler.
I've to implement my custom native-compiled Windows programming language. Is there an easier way then translating it to ASM, or translating it to C/C++ and then use a C/C++ compiler? Is there any SDK …
3
votes
4answers
252 views
Use JNI instead of JNA to call native code?
JNA seems a fair bit easier to use to call native code compared to JNI. In what cases would you use JNI over JNA?
1
vote
3answers
73 views
how to invoke a iphone native application from webview.
i have a application which has 2 parts one is a webview and other is a native iphone application.
I want to invoke a native iphone application from a website inside
a webview.
1
vote
3answers
124 views
Is there any native DLL export functions viewer?
Is there any free native Windows DLL export functions viewer, which shows the function name, and a list of their parameters?
Thanks.
1
vote
2answers
74 views
Execute native code via JNI/DLL or EXE?
We have a native app that we can access via JNI->DLL or by invoking an EXE with command line parameters. Which would be the best approach?
We will be invoking this method about 100 times a day. …
0
votes
1answer
137 views
C# Interrupting native threads
Hello *,
I am currently investigating how Thread.Interrupt plays together with P/Invoke or native calls. I have read in MSDN that it is not possible to abort (Thread.Abort) a thread which is in the …
0
votes
3answers
81 views
How to control the memory usage of processes spawned by a JVM
I am coding an application that creates JVMs and needs to control the memory usage of the processes spawned by the JVM.
