active questions tagged native - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T22:53:19Zhttp://stackoverflow.com/feeds/tag/nativehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1946322/how-do-i-find-out-if-a-net-assembly-contains-unmanaged-code5How do I find out if a .NET assembly contains unmanaged code?Daniel Fortunov2009-12-22T13:16:36Z2009-12-22T17:16:58Z
<p>.NET assemblies that contain a mixture of managed and unmanaged code cannot be ILMerged with other assemblies.</p>
<p>How can I verify if a given .NET assembly contains purely managed code, or a mix of managed and unmanaged code?</p>
http://stackoverflow.com/questions/115291/how-much-speed-up-from-converting-3d-maths-to-sse-or-other-simd2How much speed-up from converting 3D maths to SSE or other SIMD?Suma2008-09-22T14:55:20Z2009-12-22T13:20:27Z
<p>I am using 3D maths in my application extensively. How much speed-up can I achieve by converting my vector/matrix library to SSE, AltiVec or a similar SIMD code?</p>
http://stackoverflow.com/questions/1928891/native-flash-on-mobile-platforms0Native Flash on mobile platforms?rod2009-12-18T15:32:04Z2009-12-18T15:52:54Z
<p>Does anyone know if Flash will be able to run independent from the browser? I mean native apps in Flash, not just the player in a browser. The Symbian OS can do that, however I have yet to find an article which explicitly states what will become available in the case of the iPhone and the Android platform. I am not asking about dates, as those are the most fluctuation prone variables. I am part of a web/mobile apps development company which is eager to use flash to make applications even richer in content and user experience.</p>
http://stackoverflow.com/questions/229664/native-vc-using-external-not-project-dll-reference-how-to-specify-path-to-dll3Native VC++ using external (not project) dll reference how to specify path to dllHanan2008-10-23T13:14:51Z2009-12-18T13:10:46Z
<p>I have a native VC++ project that uses a dll (which is not in a project). Now, I must to put the dll in one the "Search Path Used by Windows to Locate a DLL"
<a href="http://msdn.microsoft.com/en-us/library/7d83bc18(VS.80).aspx" rel="nofollow">link</a></p>
<p>but I don't want the dll to sit in the exectuable or current or windows or system directory.</p>
<p>So my only option according to that is adding the path to the %PATH% environment variable.</p>
<p>Is there any other way?</p>
<p>Is there an elegant way to do so (adding to PATH)? should I do this on installation? should I be concerned if i'm doing this?</p>
http://stackoverflow.com/questions/1921656/compiling-c-to-native5Compiling C# to Native?mrduclaw2009-12-17T13:03:47Z2009-12-17T13:43:19Z
<p>I think I'm somewhat confused about compiling .NET byte-code to native code, or maybe I'm confused about the end result. So please bear with me as I try to sort through what I think I understand so you can help me figure out what I'm missing.</p>
<p><strong>What I'd like to do is compile my application written in C# down to regular native code</strong> like I'd get if I had written it in C. My reasoning has nothing to do with performance, but rather with some degree of protection. I understand that my end-goal is not impossible (or even really that difficult) to circumvent, but I just feel like reversing x86 assembly is more difficult than reversing what Reflector gives me.</p>
<p>Right now if I throw my C# application into Reflector, I basically get my source-code back. Typically when I throw my unmanaged C/C++ applications into IDAPro and use the HexRays decompiler, I don't quite get the same degree of decompilation back and I have to resort to wading through x86 disassembly to understand the logic flow. It's my understanding that such great decompilation comes from Reflector due to the application being in MSIL instead of the more terse native code that HexRays tries to decompile. </p>
<p>I have no concerns about the client machine still needing the .NET runtimes, I'm not trying to circumvent any of that. I would like to run normal software obfuscation programs like <code>upx</code> on my program, and doing it as a .NET binary fails.</p>
<p>It was my understanding from <a href="http://stackoverflow.com/questions/45702/is-there-some-way-to-compile-a-net-application-to-native-code">this</a> related question that <code>ngen</code> does what I want. I've tried using <code>ngen</code>. But after copying the output file from the <code>C:\Windows\assemblies\...\applicationName.ni.exe</code> directory to somewhere I can double-click, and trying to run it produces an error about it not being "a valid Win32 application". Further, when I toss the <code>applicationName.ni.exe</code> into Reflector, I get the same output as I did from just the <code>applicationName.exe</code>. Since <code>applicationName.ni.exe</code> is supposed to be native code, I expected Reflector to error out, but it didn't. If this the way I'm supposed to do this, why did Reflector still give me such a great decompilation?</p>
<p>So, just to summarize my main question again: How can I compile my .NET program into a native binary that Reflector won't so easily decompile? Or what's some best practices for protecting a product written in a .NET language from newbie reverse-engineers?</p>
<p>If I need a different tool, I'd prefer something free and not something like <a href="http://www.codewall.net" rel="nofollow">Codewall</a>.</p>
<p>Thanks!</p>
<p><strong>UPDATE:</strong> I understand that what I'm looking for might limit some of the features of the language like Reflection, but I think I'm fine with that. None of my code does any explicit <code>Assembly.Load</code> calls or anything of the sort. But couldn't those just be replaced with <code>GetProcAddress/LoadLibrary</code> calls anyway?</p>
http://stackoverflow.com/questions/1866437/how-a-native-c-plug-in-dll-can-load-a-private-assembly-located-in-a-specific-di0How a native C++ plug-in DLL can load a private assembly located in a specific directoryChris2009-12-08T11:43:14Z2009-12-10T11:31:08Z
<p>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 <strong>private assembly located in a folder external to the application</strong>. The application fails to load my plug-in DLL because my DLL depends on a private assembly which is never found (it is not located in the application directory, nor in the winsxs folder but in my plug-in directory whose location is not controlled by the application). The question is: how is it possible to make the system find my private assembly which is located in my own specific directory ? As an analogy, I would need an equivalent of setDllDirectory() but for assemblies. Or another way so that the system find my private assembly.</p>
<p><strong>Constraints:</strong></p>
<p>Because my DLL is a plug-in, I <strong>cannot install anything in the directory and sub-directories of the application</strong>. I also cannot modify the behavior of the application.<br>
I would like to avoid sharing the assembly in winsxs.<br>
I also have to use an assembly and not a simple DLL (that I could load with LoadLibrary) to avoid version conflicts.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1873339/c-cli-casting-from-unmanaged-enum-to-managed-enum0C++/CLI : Casting from unmanaged enum to managed enumLopper2009-12-09T11:38:49Z2009-12-10T04:54:26Z
<p>What is the correct way of casting (in C++/CLI) from a native code <code>enum</code> to a managed code <code>enum</code> which contain the same <code>enum</code> values? Is there any difference with using the C# way of casting like for example <code>(int)</code> in C++/CLI.</p>
http://stackoverflow.com/questions/1870381/net-garbage-collection-and-native-threads11.NET Garbage Collection and Native ThreadsNicholas2009-12-08T22:36:16Z2009-12-08T22:59:14Z
<p>It’s fairly well documented that when .NET's automatic garbage collector runs, it will temporarily pause all running managed threads associated with the application domain. What I haven't been able to discover are details on what happens to native threads created by the application when garbage collection occurs (ie. using _beginthreadex() instead of System.Threading.Thread()). Are they similarly paused or are the left running?</p>
http://stackoverflow.com/questions/1778878/converting-net-app-to-x86-native-code1Converting .NET App to x86 native codeVladimir2009-11-22T14:42:33Z2009-11-28T15:32:57Z
<p>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 probably commercial products for that purpose... but they are a bit expensive.</p>
<p>The problem is that we are to deploy the program on computers running Windows XP with no .NET Framework installed. There's also a requirement that the program's size must not exceed 500Kb (1Mb maximum) for it is downloaded from the web server (now the size is 255Kb). That is why there's no way we could attach a full-fledged .NET FX (or even a reduced one) to the downloaded program's file.</p>
<p>Obviously it is a terrible software engineering error that should have been detected and avoided earlier so we could use native technologies like C++ instead.</p>
<p>We have tried for now Novell's Mono - an open-source implementation of .NET Framework for Linux, MAC and Windows. Mono consists of C# Compiler, IDE, runtime (CLR) and Class Library assemblies (like System.dll and mscorlib.dll - much like .NET's class library assemblies installed to GAC).
What we tried to do is to locate CLR files and ship those along with our program's file and a few assemblies. This way the program can be invoked by running "mono program.exe" (command prompt) on a user's computer.
In addition to the inconvenience of such a use for the end user CLR files (mono.exe and mono.dll) turned out to be about 2.5 Mb in total that is much greater than the desired 500 Kb or even 1 Mb.</p>
<p>So, we have left with no other option but to translate our .NET App to a native one by a compiler, however the question remains - what compiler should we use and where could we find one...</p>
<p>For now I have stumbled upon a Singularity OS Project by Microsoft Research. It is an open-source research OS that is written in managed code (in part at least). The Singularity OS includes a Bartok compiler that the OS uses in order to translate a managed program to a native one (x86 32 bit). It should be noted that Bartok can't translate all the aspects of .NET 2.0 to a native code, but most of them. However I haven't yet learnt how to use the Singularity...</p>
<p>I would be really grateful to you if you could provide me with some useful tips and advice regarding the problem, your own experience with Singularity OS and Bartok Compiler or another approaches to the problem that I have overlooked and ways of solving it.</p>
<p>Thank you very much in advance! </p>
<p>Finally, using Mono's Full AOT feature (on Callum Rogers' advice) I've managed to produce a program.exe.dll that lacks a CLI header.
So it looks to me like a native dll. However I can't figure out how to convert that dll into exe or make it operational.
Also this dll doesn't seem to expose any functions of interest such as main function.</p>
http://stackoverflow.com/questions/361648/how-do-you-make-linux-guis8How do you make linux GUI's?Mike Leffard2008-12-12T01:37:08Z2009-11-26T00:26:14Z
<p>My main experience is with C && C++, so I'd prefer to remain with them. I don't want to use anything like QT, GTK, or wxWidgets or any tool kits. I'd like to learn native programming and this sort of defeats the purpose. With that in mind I'd also like to avoid Java.</p>
<p>I understand gnome and xfce and KDE and such are all Desktop Environments for Linux, and the base installed typically is X (Xorg). When coding for Linux, do you code for X, or for the desktop environment? Is there a standard Linux header for this (like win32 has windows.h) for Linux? or is it different coding methods for every desktop environment?</p>
<p>any help is greatly appreciated.</p>
http://stackoverflow.com/questions/1797328/programming-languages-that-compile-to-native-code-and-have-the-batteries-included1Programming languages that compile to native code and have the batteries includedsebtm2009-11-25T14:39:56Z2009-11-25T20:45:28Z
<p>What are the programming languages that compile to native code and which have provided a comprehensive library with them?</p>
<p>Libraries that includes functionality such as Networking, File IO, RegEx, Database, Graphics, Multimedia, Win32 API bindings, File compression, etc.</p>
http://stackoverflow.com/questions/1756490/how-to-preload-custom-colors-in-swt-colordialog1How to preload custom colors in SWT ColorDialogianmayo2009-11-18T14:43:41Z2009-11-20T20:14:50Z
<p>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.</p>
<p>My users are frustrated because whilst the color dialog allows them to enter custom colors, the application doesn't remember these custom colors (in either Win32 or OSX).</p>
<p>Does anybody know of a way to pre-load native cell color selector dialogs with a set of custom colors?</p>
<p>cheers,
Ian</p>
http://stackoverflow.com/questions/1677599/how-to-close-iphone-safari-window-before-launching-native-app1How to close iphone Safari window before launching native app?ideasculptor2009-11-05T00:24:44Z2009-11-14T14:28:36Z
<p>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 back to a URL (via openURL), that url will open in a new Safari window, ignoring the existing window. I asked a question here about loading in the same window, and it was suggested that using #anchor tags to differentiate content but using the identical url would confuse Safari into reusing a window, but that isn't true. Safari launches a new window even when the URLs are absolutely identical, including the #anchor tag. My next thought was to close the window via window.close() javascript before opening the url for the native app. But I can't get it to work. If I use an ajax call for the url, it doesn't actually launch the native app. If I use window.open(url), it cancels the closing of the prior window, whether I open the url before or after calling window.close(). </p>
<p>Does anyone know of a way to get the current Safari window to close before launching a native app via a URL?</p>
http://stackoverflow.com/questions/1666487/visual-studio-switches-from-disassembler-to-source-each-time-i-step0Visual Studio switches from disassembler to source each time I stepSuma2009-11-03T10:28:19Z2009-11-12T20:02:03Z
<p>On one of my two computers I see following behaviour:</p>
<p>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 / F11 done on the source level unless I switch focus back.</p>
<p>Can anyone recommend me what settings to inspect, or what to try to stay in the disassembler view?</p>
http://stackoverflow.com/questions/1717114/can-a-java-class-member-variable-decleared-as-native-7Can a java class member variable decleared as `native`?JavaResp2009-11-11T18:15:53Z2009-11-12T01:12:05Z
<p>For instance, is the following legal</p>
<pre><code>public class Foo {
private native int bar;
}
</code></pre>
http://stackoverflow.com/questions/607721/native-c-c-code-on-an-android-platform1Native C/C++ code on an Android platformequinox2009-03-03T19:12:18Z2009-11-09T11:51:03Z
<p>Hi,</p>
<p>Does anybody know the answer to the following questions?</p>
<ol>
<li><p>Is it possible for device manufactures can develop native C++ applications on an Android platform?</p></li>
<li><p>How can I develop my own native C++ application / library that has an upper layer Java front-end / API on an Android platform?</p></li>
</ol>
<p>Thanks,
Munish</p>
http://stackoverflow.com/questions/1694161/java-problem-unsatisfiedlinkerror1Java Problem "UnsatisfiedLinkError"Hans2009-11-07T19:38:02Z2009-11-07T21:30:19Z
<p>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.</p>
<p>However, I started making another program on NetBeans IDE which has a similar function. It compiles perfectly, but when I run it I get:</p>
<pre><code>Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: parallelporttimer.ioPort.Out32(SS)V
</code></pre>
<p>From what I understand, it's failing to call the .dll file I put on System32. But I don't understand why, since the other program, which is basically the same but made manually without any IDE, runs fine. Do I have to specify something in NetBeans for this to work? Any help with this would be greatly appreciated.</p>
http://stackoverflow.com/questions/1692175/resource-on-basic-client-security-measures0Resource on basic client security measuresblog2009-11-07T06:12:00Z2009-11-07T06:12:00Z
<p>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 that's a completely futile exercise - I merely want to give people a bit of a hard time trying to mess with the program contents, to dissuade less motivated crackers and to keep the more experienced ones [if they ever come close to the app] busy for a while.</p>
<p>This is native code.</p>
http://stackoverflow.com/questions/1157817/how-to-map-enum-in-jna0How to map enum in JNAAbdul Khaliq2009-07-21T07:53:33Z2009-10-30T02:00:03Z
<p>Hi,</p>
<p>I have the following enum how do i map in jna ??</p>
<p>This enum is further referenced in structure. </p>
<pre><code>typedef enum
{
eFtUsbDeviceNotShared,
eFtUsbDeviceSharedActive,
eFtUsbDeviceSharedNotActive,
eFtUsbDeviceSharedNotPlugged,
eFtUsbDeviceSharedProblem
} eFtUsbDeviceStatus;
</code></pre>
<p>Abdul Khaliq</p>
http://stackoverflow.com/questions/891871/connect-php-code-to-java-backend2Connect PHP code to Java backendThoaiOnline2009-05-21T08:17:53Z2009-10-29T22:52:17Z
<p>I am implementing a website using PHP for the front end and a Java service as the back end. The two parts are as follows:</p>
<ol>
<li><p>PHP front end listens to http requests and interacts with the database.</p></li>
<li><p>The Java back end run continuously and responds to calls from the front end.</p></li>
</ol>
<p>More specifically, the back end is a daemon that connects and maintain the link to several IM services (AOL, MSN, Yahoo, Jabber...).</p>
<p>Both of the layers will be deployed on the same system (a CentOS box, I suppose) and introducing a middle layer (for instance: using XML-RPC) will reduce the performance (the resource is also rather limited).</p>
<p>Question: Is there a way to link the two layers directly? (no more web services in between)</p>
http://stackoverflow.com/questions/1623488/how-to-invoke-a-iphone-native-application-from-webview1how to invoke a iphone native application from webview.Himanshu 2009-10-26T07:29:19Z2009-10-26T13:26:14Z
<p>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.</p>
http://stackoverflow.com/questions/1616761/c-without-net-framework2C# without .NET FrameworkAlon2009-10-24T02:39:30Z2009-10-26T09:58:28Z
<p>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 helping IT people with installing things, which wouldn't need another components, in an easy and modern programming language? or if you want to write a 3D game, it should be fast, and JIT would just make it slower... </p>
<p>Why, why isn't it possible? Why there are no native modern programming languages for these things? </p>
http://stackoverflow.com/questions/1602873/writing-a-native-language-compiler1Writing a native language compiler.Alon2009-10-21T18:57:05Z2009-10-21T19:58:36Z
<p>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 or something?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/82022/are-net-languages-really-making-any-kind-of-dent-in-consumer-desktop-application8Are .NET languages really making any kind of dent in consumer desktop applications? titanae2008-09-17T11:03:56Z2009-10-13T10:55:32Z
<p><strong>Do <em>you</em> write consumer desktop applications with .NET languages?</strong> If so what type?</p>
<p>My impression is that most consumer desktop applications are still native compiled applications in C, C++ and the like.</p>
<p>Whilst .NET languages are growing in up take and popularity, do these new breed of applications ever break out of the enterprise & web domain to become high street consumer applications?</p>
<p>For example look at your desktop now? how many applications are written in .NET languages, Firefox? Microsoft Office? Thunderbird? iTunes? Microsoft Visual Studio?</p>
<p>My company develops high end CAD/CAE applications we leverage new technology but our core development is still done with C++.</p>
http://stackoverflow.com/questions/1556421/use-jni-instead-of-jna-to-call-native-code4Use JNI instead of JNA to call native code?Marcus2009-10-12T19:26:13Z2009-10-12T20:31:58Z
<p>JNA seems a fair bit easier to use to call native code compared to JNI. In what cases would you use JNI over JNA?</p>
http://stackoverflow.com/questions/1556093/execute-native-code-via-jni-dll-or-exe1Execute native code via JNI/DLL or EXE?Marcus2009-10-12T18:20:35Z2009-10-12T18:40:44Z
<p>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?</p>
<p>We will be invoking this method about 100 times a day. Performance isn't super important. This native app was developed by a group outside of our company so we are not too familiar with the code (though we do own it).</p>
<p>The EXE route seems easier and more straightforward (especially as we haven't used a lot of C). Also I gather with JNI you can crash your JVM if if your DLL code has a memory leak or encounters some other troubles. </p>
http://stackoverflow.com/questions/1553627/how-to-control-the-memory-usage-of-processes-spawned-by-a-jvm0How to control the memory usage of processes spawned by a JVMVasile2009-10-12T09:44:19Z2009-10-12T11:24:01Z
<p>I am coding an application that creates JVMs and needs to control the memory usage of the processes spawned by the JVM. </p>
http://stackoverflow.com/questions/1548637/is-there-any-native-dll-export-functions-viewer1Is there any native DLL export functions viewer?Alon2009-10-10T18:01:24Z2009-10-10T18:39:51Z
<p>Is there any free native Windows DLL export functions viewer, which shows the function name, and a list of their parameters?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/982592/what-are-the-troubleshooting-steps-tools-for-c-to-native-interop1What are the troubleshooting steps/tools for C# to Native interop?Pat O2009-06-11T17:47:39Z2009-10-07T20:34:09Z
<p>I have an SDK that is written primarily in C#. We have some native code that was written for security and performance reasons. We use DllImport to interop with the native code. There are a few functions that I get an "<code>Unable to find an entry point named '...' in DLL '...'.":"</code>" error. I have verified that the function that is not found is exported. I have verified that it does not have a mangled name. I have verified that the parameters line up. I have tried a couple different calling conventions in the DllImport attribute. I guess I can keep trying this sort of randomly, but I am hoping there is a more direct approach. </p>
<p>Does anyone know of a tool or method to get more information in a case like this? How confident should I be that the dll has been located? Would I get this exception if the parameters are wrong? Any help would be appreciated.</p>
<p>Pat O</p>
http://stackoverflow.com/questions/538886/java-lang-unsatisfiedlinkerror-in-linux0java.lang.UnsatisfiedLinkError in Linux.Oscar Reyes2009-02-11T21:26:32Z2009-09-28T14:11:34Z
<p>Hello. </p>
<p>I've managed to get into a linux machine to try the HotKey library suggested in <a href="http://stackoverflow.com/questions/79658/react-on-global-hotkey-in-a-java-program-on-windows-linux-mac/202272#202272">this answer.</a></p>
<p>I've compiled the sample code and now I run the program and I've got the following message:</p>
<pre>
[oracle@machine jxgrabkey-0.2.1_i386]$ java -classpath lib/JXGrabKey.jar:Example JXGrabKeyTest
Exception in thread "main" **java.lang.UnsatisfiedLinkError:** /home/oracle/javasample/jxgrabkey-0.2.1_i386/lib/libJXGrabKey.so: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by /home/oracle/javasample/jxgrabkey-0.2.1_i386/lib/libJXGrabKey.so)
at java.lang.Runtime._load(libgcj.so.7rh)
at java.lang.Runtime.load(libgcj.so.7rh)
at java.lang.System.load(libgcj.so.7rh)
at JXGrabKeyTest.main(JXGrabKeyTest.java:17)
</pre>
<p>I know how to handle this in Windows ( just by adding the DLL to the PATH env var ) but I'm not that sure about linux. </p>
<p>I've read something about LD_LIBRARY_PATH and some other env vars but I can make it work.</p>
<p>Any advice?</p>
<p><strong>EDIT</strong></p>
<p>After the support from mmyers to indentify the problem and reading <a href="http://www.linuxquestions.org/questions/linux-newbie-8/usrliblibstdc.so.6-version-glibcxx3.4.9-not-found-required-by-.example1-604625/" rel="nofollow">this thread</a> and <a href="http://ubuntuforums.org/showthread.php?t=666744" rel="nofollow">this other</a>. </p>
<p>I can tell:</p>
<p>My system is: Linux 2.6.18-53.el5</p>
<p>My GCC version(s) is ( are) : </p>
<p>gcc-c++-4.1.2-14.el5</p>
<p>gcc-gfortran-4.1.2-14.el5</p>
<p>libgcc-4.1.2-14.el5</p>
<p>gcc-4.1.2-14.el5</p>
<p>The problems is I require gcc 4.2.0</p>
<p>Aaand apparently there is no gcc 4.2.0 for my system. </p>
<p>I guess I would have to wait for it to come or the author recompile it in a previous version.</p>
<p>mmyers, thanks a lot for your help.</p>