0
votes
1answer
17 views
How a native C++ plug-in DLL can load a private assembly located in a specific directory
I have a native C++ DLL which is used as a plug-in in another application. This DLL has an embedded manifest and depends on a private assembly located in a folder external to the application. The …
0
votes
6answers
182 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
4answers
239 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 …
1
vote
1answer
17 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
186 views
Can a java class member variable decleared as `native`?
For instance, is the following legal
public class Foo {
private native int bar;
}
1
vote
4answers
53 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, …
0
votes
0answers
9 views
Resource on basic client security measures
Does anyone know of any resources that describes some techniques for improving security on the client side of an application? I do not expect to make anything completely "hack-proof", as I understand …
1
vote
2answers
93 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 …
0
votes
7answers
233 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
3answers
82 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.
2
votes
7answers
240 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
279 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
2answers
80 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
3answers
88 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.
