1
vote
4answers
40 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 perfe …
0
votes
2answers
54 views
+250
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, re …
1
vote
1answer
33 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 th …
2
votes
7answers
202 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 …
1
vote
3answers
84 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++ compile …
1
vote
3answers
50 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.
3
votes
4answers
171 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
107 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
63 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 1 …
0
votes
3answers
71 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.
0
votes
1answer
106 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 thre …
1
vote
5answers
152 views
Programably make and play a sound through speakers C++
I'm making a game in native vc++ (not .Net)
I'm looking for a way to play a noise (maybe 8 bit or something) through the real speakers (not internal). I know about PlaySound, but …
1
vote
3answers
99 views
Change repeat key threshold c++
I'm building a c++ tetris game (not c++ .Net). I feel my controls are weird. I want to make it so that when user presses one of the arrow keys, about 10ms of holding it down will s …
1
vote
3answers
114 views
Gradient Brush in Native C++?
In c#, you can use drawing2d.lineargradientbrush, but in c++ right now I only found the CreateSolidBrush function. Is there a function in the native gdi dll to create a gradient br …
0
votes
3answers
74 views
Where can I find the source code for Java’s HttpURLConnection.getOutputStream()
Where can I find the actual code (be it java or native) that's executed by:
new URL("http://google.com").openConnection().getOutputStream()
Bonus: how I can debug it from Intell …
