Questions tagged [windows64]
102 questions
2
votes
1 answer
Python 32bit on Windows 64bit Ctypes module error
in both python 3.4.3 and 2.7.9 when I try to call any function from kernel library.
from 32bit version of python on 64bit windows, an error message is printed:
from ctypes import *
path=create_string_buffer(256)…

Aladdin
- 339
- 1
- 2
- 15
2
votes
1 answer
Warning: exec(): Unable to fork
OK, having issues. My PHP script works except for 1 line.
This line tries to execute an outside command with exec().
I get:
Warning: exec(): Unable to fork
I tried searching for an answer. Several sites say I have to set the permissions on…

Tom Collins
- 4,069
- 2
- 20
- 36
2
votes
1 answer
What changes I need to make to my WCF application to run on 64 bit OS?
I have a C#/WCF application (hosted in windows service) which was deployed and tested on 32 bit Windows server. Now I need to deploy it for production. My network team suggested to deploy it on 64 bit Windows Server to take full advantage of server…

Hemant
- 19,486
- 24
- 91
- 127
2
votes
0 answers
I am looking for structure alignment when pointers are embedded in structures, I have found interesting links but not what I want
I am passing a structure from application to the driver through deviceiocontrol function.
The structure has only two members.
struct Buff
{
BYTE * bPtr;
UINT uiSize;
}BuffVar;
I assign a pointer and size and pass the address of the…

abhiram ramanathan
- 21
- 1
1
vote
1 answer
**flutter_blue_plus** This version of %1 is not compatible with the version of >Windows you're running. What should I do?
So this project of mine had flutter_blue plugin in it. And I just switched to flutter_blue_plus. And now I can't run it on my system. And this is the error it shows. And when I checked, it feels like no one else is facing this issue. There's no…

Hippo Fish
- 416
- 2
- 9
1
vote
1 answer
How to get the result of Windows_x64 message without truncation in Qt5?
In Qt5, the function for processing native Windows messages is:
bool QWidget::nativeEvent(const QByteArray &eventType, void *message, long *result)
and the documentation says, that the third parameter means LRESULT on Windows. In Qt6, the…

lasqa
- 13
- 2
1
vote
1 answer
studio64.exe doesnt not start even after setting environments
After installing last version of android studio I can't open the IDE any more every time I try to click on EXE file nothing happens.
I have set JDK_HOME and JAVA_HOME in Windows environment and I have tried to do clean install but still nothing…

Hossam Hassan
- 795
- 2
- 13
- 39
1
vote
0 answers
Is LOCK prefix mandatory for modifying byte-length variables in a thread-safe manner?
For the sake of simplicity let’s assume we have exactly 8 threads and a byte array of exactly 8 bytes length. Each thread is assigned a byte from this array – that is, the thread can modify freely the assigned byte and none of other bytes from the…

Zoltán Bíró
- 346
- 1
- 12
1
vote
2 answers
Makefile on Win 64
I am working on Windows 64 and we need a makefile for our project. We have an existing makefile foe Win 32 and don’t know how to set the 64 bit environment from make file.
If anyone did it or have any sample makefile of Win 64 then please share…

CrazyC
- 1,840
- 6
- 39
- 60
1
vote
1 answer
Windows event logging with log4j2 configuration for 32 and 64 bit Windows
I have an example how to configure the log4j2.xml to have Windows event logging:

victorio
- 6,224
- 24
- 77
- 113
1
vote
1 answer
ValueError: ['path']
I'm trying to wrap a c++ code into python using cython. my .py code for this is
from distutils.core import setup
from Cython.Build import cythonize
setup(
ext_modules=cythonize("helloworld.pyx"),
)
however while compling it with
python…

Payal Singh
- 131
- 1
- 1
- 7
1
vote
2 answers
Perl script works OK in command prompt, but fails on ODBC as a CGI script
Issue: Perl script works fine in command prompt, but fails on ODBC as a CGI script
Settings:
Win XP Pro 64 bit version 2003 SP2
Apache 2.2.17 Win32
Active Perl 5.12.2 (not Perl64)
an ODBC DSN is created for SQL SERVER
Details: from command prompt,…

Bill Rong
- 353
- 4
- 12
1
vote
1 answer
Packr windows exe not working
Downloaded the packr from https://github.com/libgdx/packr &
Packr json is
{
"platform": "windows64",
"jdk": "C:/Program Files/Java/jdk1.8.0_72",
"executable": "myapp",
"classpath": [
"input/test-hello.jar"
],
"mainclass": "Main",
"vmargs": [
…

nashter
- 1,181
- 1
- 15
- 33
1
vote
1 answer
ODBC SQLBindCol error on Win 64
I am getting following error
error C2664: 'SQLBindCol' : cannot convert parameter 6 from 'SQLINTEGER *' to 'SQLLEN *'
1> Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
Anyone have…

CrazyC
- 1,840
- 6
- 39
- 60
1
vote
1 answer
ld: cannot open output file conftest.exe: Permission denied
Using MSYS2 (version x86_64-20160205) on Windows 7 64bits, I'm trying to compile corkscrew.
Here is the output:
$ ./configure
loading cache ./config.cache
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking whether build…

Anthony O.
- 22,041
- 18
- 107
- 163