Converting existing code or executables to another programming language, environment, or architecture.
4
votes
4answers
821 views
Java equivalent for .charCodeAt()
In JavaScript, .charCodeAt() returns a Unicode value at a certain point in the string which you pass to a function. If I only had one character, I could use the code below to get the Unicode value in ...
0
votes
0answers
112 views
Get ProgramFiles path using WinRT API from C++ library
Can you please provide alternate WinRT API for the below win32 API SHGetSpecialFolderPath(NULL, buffer, CSIDL_PROGRAMS, 0)?
StorageFolder class will only give application specific path .
Thank You
2
votes
1answer
82 views
Error deleting an array while porting code from Windows to Linux
I'm trying to port a library, which correctly works in Windows, to Linux.
In these lines of code I get an error:
long* permutation = new long[result->getGeneListCount()];
for(long i=0; ...
0
votes
1answer
464 views
Using SDL in Qt Creator on Mac OSX
My friend and I are porting our software to Mac OSX. The application is heavily built on SDL and we are having a hard time getting SDL linked and compiling in Qt5. We are not using any part of Qt in ...
2
votes
1answer
843 views
Models and roles in Qt5 and Qt 4.8
Today I wanted to play with QtQuick2 a little bit. So I have started to port very simple Qt Quick1 app to Quick2. This app uses some models. And in Qt5 models are not working as I expect: I can't ...
5
votes
1answer
308 views
Port MATLAB bounding ellipsoid code to Python
MATLAB code exists to find the so-called "minimum volume enclosing ellipsoid" (e.g. here, also here). I'll paste the relevant part for convenience:
function [A , c] = MinVolEllipse(P, tolerance)
[d ...
3
votes
2answers
412 views
Is opengl cross platform? If not, how a game be ported? [closed]
Ok, so say I'm writing a game in c++ with opengl. The game draws a few, simple shapes like squares on the screen. Now say I want to run the "game" on windows. How would I go about porting it? The ...
0
votes
1answer
209 views
Best process on Windows XP SP3 to update old C++/DirectX 7-8 code from a book to C#/SlimDX or DirectX 9?
I am diving back into the world of programming. In a few months, after I have grown competent in C#, I'm going to use an old book, that C++ Terrain Engine thing Charles Rivers released, and maybe a ...
1
vote
1answer
152 views
Porting exisiting embedded source code to RTOS
I have an existing embedded source code which runs directly on a microcontroller with no operating system. I need to port the code to run on a specific RTOS.
Are there any guidelines in where to ...
0
votes
0answers
27 views
openJDK porting guide
Does anyone know is there some kind of porting guide for openJDK to other operating systems? I would be very thankful if someone who had experience with porting openJDK point me in some direction.
1
vote
2answers
186 views
What is the equivalent linux API for WaitForMultipleObjects() and WSAEnumNetworkEvents()?
What is the equivalent linux API for WaitForMultipleObjects() and WSAEnumNetworkEvents()?
Can we use pthread_cond_wait() for WaitForMultipleObjects?
6
votes
2answers
255 views
How to have drag-and-drop and sorted GtkTreeView in GTK3?
I am porting liblarch, a library for handling directed acyclic graphs, from PyGTK (GTK2) to PyGObject introspection (GTK3). I ran into the problem with GtkTreeView.
The app using liblarch needs to ...
0
votes
1answer
46 views
Macro for Windows Store App support
i have a library developed in C . I am porting it ,for Windows Store App support. For it i have enabled the Option YES for WindowsStoreAppSupport setting in project settings->configuration properties ...
0
votes
1answer
116 views
Porting JVM to MINIX
As you may see from the title, for some reason I need to make running .class files on Minix possible (a compiler is not necessary). So could somebody point me in any direction, suggest some ...
0
votes
3answers
120 views
Hello I'm trying to port an ASP.NET sample from C#(?) to VB and come unstuck as I dont understand the C# Language
Hello and thank you for reading my thread.
I'm new aps.net 4.5+ and am trying to port a C# asp.net sample to visual basic.
I've attempted to follow the instructions as best I can with my limited ...
1
vote
0answers
69 views
C++ class compile error C2676 in VS2008 [closed]
Now I am struggling with CArrayEx class which is one of articles in codeproject
The problem is that the CArrayEx class isn't able to compile at all in VS2008 environment
I think CArrayEx class was ...
0
votes
1answer
182 views
Porting ios to android: http post
Trying to post image with additional data.
IOS code:
NSMutableDictionary *params = [NSMutableDictionary dictionary];
[params setValue:userID forKey:@"userid"];
[params setValue:sessionID ...
-1
votes
1answer
112 views
Is there an equivalent of iOS navigation controller in BlackBerry-10
I am trying to port an iOS application to BlackBerry-10. Is there anything in BlackBerry-10 that is equivalent to UINavigationController of IOS.
0
votes
0answers
471 views
Porting from Android to Symbian in phonegap
I have finished building a mobile app in android using Phonegap and jquerymobile framework and now started porting to symbian os and followed documentaion here .In both os the project is built in www ...
1
vote
1answer
186 views
What are differences between same ROM for different devices? [closed]
For example, can anybody give some concrete examples of differences between Cyanogen Mod 10 for Samsung i9100g and CM 10 for i9100?
As far as I know, they have different hardware and that's why their ...
-1
votes
1answer
65 views
What Linux class is equivalent to CStdioFile
Which Linux class is equivalent to Windows MFC class CStdioFile?
I am porting some class to linux.
0
votes
1answer
112 views
Linux/Android: how do you find out if a mutex object already exists?
I'm currently attempting to port a Multithreading library written for WIN32 to Android/Linux and I seem to have run into a bit of a problem trying to map over a particular feature that WIN32 mutexes ...
0
votes
0answers
109 views
linux equivalent to SetCommMask and WaitCommEvent
I'm porting a windows serial c++ class to linux which contains multithreads and some windows api. just wanted to know how I would recreate SetCommMask and WaitCommEvent for linux.
1
vote
1answer
82 views
unistd.h implementation
My toolchain (Realview) does not have implementation of unistd.h, I have a code that I need to use that is using unistd.h, some function like access, open.
So I need to implement this functions by ...
2
votes
2answers
126 views
on 64bit system, how to pass in int as void *
There is a process_create() function, which has a param as void*.
If I want to pass in an int, how could I do that to avoid build error from compiler?
I can't change the param list to process_create()
...
0
votes
1answer
55 views
Errors porting Win code to Linux [duplicate]
Possible Duplicate:
Where and why do I have to put the “template” and “typename” keywords?
declaring a C++ set iterator
I'm trying to compile C++ some code, which works fine in Windows, ...
0
votes
0answers
53 views
Porting WPF to Silverlight - How to handle missing Framework Classes? [closed]
We are porting a WPF application to Silverlight 5 and face the following problem:
The Silverlight framework is much smaller than WPF/.Net 4.0 and has less features and classes than WPF. There are two ...
1
vote
2answers
470 views
How to get file creation time in linux using c++
I need to find out at what time and date a file has been createdusing C++ in linux.
6
votes
1answer
112 views
Migrating from Python to Racket (regular expression libraries and the “Racket Way”)
I'm attempting to learn Racket, and in the process am attempting to rewrite a Python filter. I have the following pair of functions in my code:
def dlv(text):
"""
Returns True if the given ...
0
votes
1answer
229 views
Why aren't S_IRWXG and S_IRWXO defined in sys/types.h on Windows?
I'm porting some software to Window from Unix and am using the g++ v4.7 on Windows XP SP3. I have a header file declaration that looks like this:
#include <string>
#include <sys/types.h>
...
1
vote
1answer
138 views
How to configure a NetBeans/C++ project for different systems?
In NetBeans/C++ I have a project that needs to be built on two different versions of Linux.
Each of them has libraries in different paths, different versions of GCC, different versions of static and ...
0
votes
0answers
170 views
LNK1104: cannot open file 'rpcndr4.lib'
I was working in VS2005 in WindowsXP 64-bit platform and now I am converting all my projects in to VS2010 in Windows7 64-bit. While building one of my project I am getting a link error "LNK1104: ...
-5
votes
1answer
32 views
Porting Windows Queues/Stack to android
I was thinking to port Queues and stack used in Windows to Android. Is it possible to do the same? Can it be done with the help of Android NDK?
0
votes
1answer
71 views
Porting Delphi TList.Sort to PHP
I need to port Sort procedure from TList to receive an PHP Array
procedure TList.Sort(Compare: TListSortCompare);
begin
if (FList <> nil) and (Count > 0) then
QuickSort(FList, 0, Count ...
0
votes
1answer
138 views
porting: Android/Linux client/server socket communication issue
I'm porting a Server/Client socket application from Windows to Linux/Android and I can't seem to figure out what the problem is.
Basically, what the Client does is send a string of chars to the ...
1
vote
2answers
75 views
Porting date formatting from Java to C++ [closed]
I have the following code in Java. I've been asked to port it to C++, however, I am not a Java developer. What would be the equivalent in C++:
public String formatDate( String string, Date time, ...
1
vote
1answer
327 views
Android/Linux ioctl FIONREAD failing
I'm in the process of porting some (socket-related) Windows C code to Linux/Android and I'm running into an issue with the ioctl command:
unsigned long u;
if(sockfd != -1 && !ioctl(sockfd, ...
0
votes
1answer
78 views
Python sorted() function and returning multiple values
I am trying to convert a Python program into C#. I do not understand what is being done here.
def mincost(alg):
parts = alg.split(' ')
return sorted([cost(0, parts, 'G0 '),cost(1, parts, 'G1 ...
2
votes
2answers
67 views
Python is this a string or a string array?
I am trying to convert a Python program into C#. I do not understand what is being done here.
def mrF(alg, times = 1):
if ((times % 2) == 0):
return alg
else:
if (alg == 'R'):
...
4
votes
1answer
39 views
Procedure and location to deploy a daemon
I am new to Linux. I recently ported my C++ window service to linux daemon.
In windows, I have the below folder structure. I found the structure is easy to allow other colleagues to follow and ...
2
votes
1answer
256 views
Replacement for hal-get-property and hal-find-by-capability in udev?
I need to port a bash script which uses deprecated HAL tools like hal-get-property or hal-find-by-capability to udev. HAL states that HAL was merged into udev, but I couldn't find useful informations ...
0
votes
1answer
85 views
u-boot: mpc5xxx.h does not support mpc55xx?
I'm new to u-boot and currently trying to port it to a mpc5554 board (from phytec) for fun.
I was happy to find the mpc5xxx.h file indicating that it would be usable in my case. However, the more I ...
0
votes
1answer
148 views
getting undefined symbols when porting linux compiled program to MAC OS X
I'm trying to compile a program on MAC OSX, originally written on the Linux OS. It is a big program with several makefiles. I have been working on it for weeks and now cannot seem to figure out why is ...
0
votes
0answers
42 views
How to set NDK level for android application
I have a C++ project which I build using android NDK-7 and also successfully loaded this shared library into my android application.
But while I am calling one of the native function application get ...
0
votes
0answers
58 views
Native function is not executed, calling from android application
I have a C++ project which I need to port into android.
Actually I already build the shared library using android NDK and load the library successfully from my android application.
But the problem I ...
2
votes
1answer
183 views
sdcard not detected after porting
I have a ported version of Android Gingerbread 2.3.4 running on the Tsunami board by Technexion. In the version of Android, when I insert sdcard its not detected.
I tried porting the device to Froyo ...
0
votes
2answers
102 views
Porting code from MFC to C#
I change some code from c++ MFC to c# and have a few questions:
1) In MFC I have a CByteArray variable.
What type should I give to this variable in c#?
2) I have a c# interface I have to use.
In MFC ...
2
votes
0answers
90 views
RTX kernel porting
We have a project in KEIL IDE for LPC2148 which has RTX kernel programs along with other programs in it.Now we need to change the IDE from KEIL to Eclipse. When we tried to compile it in Eclipse GCC ...
1
vote
1answer
43 views
Inserting Site Catalyst in web sites — Using XML only
In one website i need to insert SiteCatalyst tag by using XML. I cannot use JavaScript.
Could any one can help me?
BR,
Praji
0
votes
0answers
56 views
Asset mapping from iOS to Android?
I'm working on basically porting an app from iOS to Android and am curious about general strategies for bringing over the assets.
Our iOS project has essentially 3 classes of assets:
* Small = 480 x ...





