I am currently porting a 32 bit c++ program (with C++ Builder) to 64 bit Code. The application is linking a 3rd party dll and the 32-bit compiler project contains the associated lib file, as usual. In 64 bit mode, these ".lib" files need to be transformed into archives with extension ".a". I know there ..
Category : 32bit-64bit
I am running a .net 5 Windows service process, which cannot be complied to AnyCPU. For the user compatible reason(some client still use 32 bit Windows), I need to build it to x86 App. When I try to enum the details of a x64 process on x64 Windows, it said a x86 process cannot do ..
I wrote an app that create logs in C# WinForms. The app is an 32 bit app and the OS is 64 bit. Question: If I run the application on an 64 bit OS and the log reaches 4 GB will it run further or will give an error? Thanks Source: Windows..
I’m trying to make this program save to file a long double value. When I run it on 32-bit release it returns an error but works well on 64-bit. Source: Windows Que..
I have an internal x86 library that I need the functionality from in an application that is being ported to 64 bit, I do not have access to the source code for the library so recompiling it as 64 bit is out of the questions, and for whatever reason this application has to be ported ..
I have an old game client and server from 2007 that my friends and I used to love playing around on. 5 years ago it worked fine but after finally updating my PC the client for the game no longer displays properly and instead is just a black screen. For reference the Client/Server are similar ..
The problem is the same as this: a c++ program returns different results in two IDE I have this same issue, but in VSCode, and in C language. How do I set it for 64-bit compilation? #include <stdio.h> #include <stdlib.h> int main(int argc, char const *argv[]) { char string[20]; printf("Informe o nome: "); scanf("%[^n]%*c", &string); ..
I’m using a 64-bit version of python, on a 64-bit version of Windows 10, to run some code. However, the code fails on importing ctypes. In fact, the minimum example for the problem is simply: import ctypes Which fails here: from _ctypes import Union, Structure, Array With this error: DLL load failed: %1 is not ..
I am trying to sleep my PC using this command system("C:WindowsSystem32psshutdown -d -t 0"); it works fine if I use cmd, but when I run this in cpp, I got this ‘C:WindowsSystem32psshutdown’ is not recognized as an internal or external command, operable program or batch file. Source: Windows..
I just have bought a smart actuator with can bus protocol. And there is one command that use to control motor speed. And it say "Speed Control is int32_t, which corresponds to the actual speed of 0.01dps/LSB" What does 0.01 dps/LSB?? From my opinion int_32 is vary from(−2,147,483,648, +2,147,483,647) does it mean I can control ..
Recent Comments