porting

.NET 3.5 Web Application - Porting to 64Bit - Potential issues

匆匆过客 提交于 2019-12-13 02:08:12
问题 I have an existing ASP.net 3.5 web application. This is tested and working in a 32 bit environment. There is a plan to move this application to a 64 bit environment. As a first step, the plan is to compile the entire application in "Any CPU" Is anyone aware of any plan / checklists that can be used in porting from 32-bit to 64-bit? As the hardware is still in procurement, it will be a while before the actual system testing will start and hence we want to try and minimize the amount of issues

Android - Estimate port of BlackBerry app with PIM and networking [closed]

六月ゝ 毕业季﹏ 提交于 2019-12-12 18:22:06
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . I have a J2ME CLDC Blackberry app which I need to port to the Android. Some of the features: client/server communication using HTTPS reading/writing PIMs, files on device memory, SD card listeners on PIMs changes

Using SQLite with WinRT

限于喜欢 提交于 2019-12-12 15:03:37
问题 I am developing a metro ui application and I would like to use SQLite for some internal data instead of JET in order to take advantage of some already-written code. Howerver when I try to use sqlite3_open for opening a data base, it does not work. I get an error saying a cannot open the data base. I believe some APIs used by the SQLite cannot be used on metro style application. Can someone help me on this? At least say me how to identify what apis should be ported? 回答1: This code should work:

What is the /proc/self/cmdline / GetCommandLine equivalent on Mac OS X?

一个人想着一个人 提交于 2019-12-12 11:19:11
问题 How can I access the command line on Mac OS X without using argc, argv? On Linux, I would simply read /proc/self/cmdline or use GetCommandLine on Windows, but I can't find the equivalent for Mac OS X. 回答1: There are functions called _NSGetArgv and _NSGetArgc in crt_externs.h. However, wouldn't it be simpler to just store the argc/argv in a variable at the start of main and be portable to all three platforms? NOTE: These functions are not directly documented, but they are mentioned in the

How to port C# applications from windows for linux?

一笑奈何 提交于 2019-12-12 07:59:19
问题 Windows.Forms library contain many bugs which effectively prevent applications from working. WinForms Designer is unable to put WebBrowser control on form. NotifyIcon class doesn't work under LXDE (see the bugtracker of KeePass). Clipboard class is incompatible with default manager of Calculate Linux. Drag and Drop have problems in DockPanelSuite. WinForms Designer is not finished because of opacity problems. WPF was never implemented and no plans to do it. And mono team says "we don't want

Does porting Android application to BB 10 causes performance issues?

半腔热情 提交于 2019-12-12 02:16:02
问题 I am very new to BlackBerry 10 development. Reading some of the documents I could understand that it is possible to port Android applications to BB 10. In fact it is the only way one can develop apps for BB 10 using JAVA language. I really wonder porting the apps will ever cause any performance issues in BB 10. My client is very particular about the performance of the application which we are developing. Can any of the experts here tell me whether there is a chance that the ported application

How can I import a Windows project to Ubuntu on Qt?

℡╲_俬逩灬. 提交于 2019-12-11 19:27:49
问题 I wrote an application using the Qt SDK on Windows. I now want to run that Application on Ubuntu making some minor modifications (e.g. changing the default directory when user clicks on save). Is there a way to do this, preferably through Qt Creator? Thanks. 回答1: Make sure that Qt SDK paths are set and valid 回答2: You can open your .pro project file with qtcreator on Ubuntu. Just make sure that you don't use any windows specific libraries 来源: https://stackoverflow.com/questions/9064091/how-can

Porting C code; need help with bitwise operation and pointer syntax

£可爱£侵袭症+ 提交于 2019-12-11 17:11:50
问题 I have some C code that I'd like to port to java. I haven't done much C coding, but I was able to follow along up until this one function. If anyone could help me understand what is going on, it would be greatly appreciated. int reverse_integer(int input) { int output = 0, i; for ( i=0, i<sizeof(int); i++ ) { output = ( input & 0x000000FF ) | output; input >>= 8; if ( i < 3 ) { output <<= 8; } } return output; } The function is used as such: char * position = //some data /*the included

Need help porting XTEA C++ code to PHP

我的梦境 提交于 2019-12-11 14:27:47
问题 I have some problem convert C++ code to PHP. The purpose is I need to communicate my application (build with C++) with web server (PHP ) using XTEA cipher to encrypt/decrypt the requested packet via XMLRPC. The original code I taken from some project Lode's Programming Interface and the code that I mean is this. some snippets: inline void xtea_encipher(unsigned int num_rounds, unsigned long* v, unsigned long* k) { unsigned long v0 = v[0], v1 = v[1]; unsigned long sum = 0, delta = 0x9E3779B9;

porting win32 code (windows.h) to linux [closed]

雨燕双飞 提交于 2019-12-11 11:48:09
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . I'm working on a c++ project where I have bunch of Visual Studio generated project files that I want to port to linux. I essentially am using windows.h header file in multiple files on Windows. Now, I'm unsure as