all versions of the Windows operating system that run on 64-bit architecture

learn more… | top users | synonyms

0
votes
1answer
23 views

Scipy crashes on Win64

I'm trying to use the scipy package in my 32-bit Python 2.6 on 64-bit Windows 7. I have installed Scipy 0.12.0 from the 32-bit Python Superpack binary installer. The installation went through ...
1
vote
2answers
56 views

What is the maximum size of an integer (x86)?

I'm going to upgrade my VC++ 2008 into VC++ 2010 or 2012. Before upgrading I have some questions: My compiler only supports the largest __int64 integers. Is __int128 supported in version VC++ 2010, ...
0
votes
1answer
85 views

Armadillo in Win64 (LAPACK and BLAS) - VC++ 2010

I'm using VC++ 2010 to do some matrix calculation with Armadillo. I find that Armadillo uses LAPACK and BLAS to do some matrix inverse work, it has the .lib files in its examples (lapack_win32_MT.lib ...
0
votes
0answers
13 views

How can i swap between multiple php versions with XAMPP on Win64? [duplicate]

How can i swap between multiple php versions with XAMPP on Win64? I'm running PHP 5.4.4 and i need PHP 5.2.x max.
0
votes
0answers
48 views

Check for mouse movement with WinAPI when using GLUT

Is it possible to check for mouse movement using ONLY the WinAPI, when using GLUT? I ask because I've been trying to get around a bug in FreeGlut under Windows (it works on everything else) that ...
0
votes
0answers
37 views

Determine largest CreateFileMapping using large pages that will succeed

I want to allocate up to 96gb of large pages for our server applications to share. I am using CreateFileMappingNuma to request 96/maxnumanodes on each numa node. What is the standard way, if any, to ...
0
votes
1answer
77 views

Easiest Way to Receive Sleep Notice in C++ on Windows 7

I am writing an native c++ application that needs to do a quick bit of work if the Windows 7 system is put into sleep mode---otherwise it will unavoidably crash when the system wakes up. What is the ...
1
vote
1answer
255 views

How to fix the application crash at startup when using 64-bit bass.dll in 64-bit Delphi project?

I can't run my 64-bit Delphi application with the 64-bit version of bass.dll. I'm using Delphi XE3 to build my application. Application crashed to start with 0xc000007b. Debugger Messages: Thread ...
0
votes
0answers
63 views

How can I print stacktrace of a application runs on Windows 64bit

My task is porting a DLL from 32 to 64, that DLL is used to print stack trace of application (when the app is being crashed), the DLL use AddVectoredExceptionHandler to get stack trace, it works fine ...
0
votes
0answers
116 views

EnumProcessModulesEx missing in psapi.h

I am trying to enumerate all the processes running in windows, both 32bit and 64bit, for 64bit I need to call EnumProcessModulesEx, which isn't available in the psapi.h with Devc++ that I am using, so ...
0
votes
0answers
61 views

DLL cannot use address in executable

I'm writing a console application in 64bit NASM, and everything was fine until I moved part of my executable into a DLL I created. This is my first experiment with DLL's at an assembly level. I cannot ...
0
votes
2answers
131 views

Where my Registry entry go ? windows 7, win64

Windows7 and Win64 is a new platform me, programming wise, so don't know what happened, I save a key in windows registry in windows7 64bit with the following command, the problem is that the same code ...
1
vote
0answers
220 views

pyaudio prints debug messages

I'm using the 64-bit PyAudio build available here, on Windows 7. When I import pyaudio and do pyaudio.PyAudio(), it works fine, but a large amount of what seems to be debug info is printed to stderr. ...
0
votes
2answers
524 views

Stumped by VS2012 exception-swallowing nightmare

I started asking this question here, and got very informative answers, but still can't get round the problem. That question has been closed as it's a known issue. I know it's a known issue: my ...
0
votes
0answers
36 views

PDFFileReader isn't closing pdf after use [duplicate]

Possible Duplicate: How to close pyPDF “PdfFileReader” Class file handle I'm running Python 2.7 on Win 64bit. I'm trying to download a pdf to file, open the pdf, extract the text, and then ...
10
votes
2answers
167 views

64bit vc++ program seems to run under 32bit mode

I created a 64bit c++ project in Visual Studio 2010 (under Windows 7 64bit); I thought I was running a 64bit application, and the following code returned true: bool is64bit = (sizeof(void*)==8); ...
0
votes
0answers
171 views

how to make mod_wsgi work with apache in win7 64bit

how to make mod_wsgi work with apache in win7 64bit My windows is win764bit,And i wanted run web.py with apache. If I add "LoadModule wsgi_module modules/mod_wsgi-win32-ap22py27-3.3.so" in Apache ...
2
votes
0answers
276 views

DAQ with NI board: Matlab & Win64

In a moment of uninformed arrogance, I decided that my new data acquisition computer is going to be an x64 running win7. I have matlab 2012a running on the computer and a NI PCIe6363 card doing the ...
3
votes
1answer
260 views

pnet communication from win64 to win32

I use the pnet tcp/udp toolbox) along with psychtoolbox to communicate between two instances of matlab in different machines. One of my machines is a 32 bit win7 running matlab 2010b. The other is a ...
0
votes
1answer
551 views

NullPointerException thrown when instantiating and OleControlSite on Windows 7

I am getting a NullPointerException when trying to open excel from SWT. Sadly I can't post the full stacktrace and some of the code because it has references to the company that I work for. Hopefully ...
3
votes
1answer
263 views

x64 calling convention (stack) and varargs

I've read Microsoft's documentation, but the scheme is so awkward, I thought I'd double-check to make sure I'm understanding it correctly... My understanding is the generic method by which parameters ...
0
votes
1answer
94 views

running QT Jambi applicantion on Win64

I've been evaluating QT Jambi for an application I'm developing, and on the way I've read that QT Jambi faces some troubles at development time on Win64. However, I won't develop on Win64 so it ...
0
votes
2answers
97 views

Does sprintf_s have specific usage requirements for win64 vs. win32?

The following code snippet is an extraction and simplification of a running SW I am reverse engineering (I tried to emphasize the problem without bothering you with all the small details). Building ...
2
votes
2answers
107 views

Storing double* in a long (C++)

So I have this existing bit of code that compiles perfectly in Visual Studio 2005, when the target platform is 32 bit. However, it does not work in 64 bit. I don't understand why; in fact I have never ...
31
votes
1answer
929 views

Memory leak in the Win64 Delphi RTL during thread shutdown?

For a long time I’ve noticed that the Win64 version of my server application leak memory. While the Win32 version works fine with a relatively stable memory footprint, the memory used by the 64 bit ...
0
votes
1answer
273 views

Automation / WinAPI calls betwenn 64bit and 32bit application [closed]

We have an automation scenario (mostly MSUIA) between 2 application, the target is 32bit, my app (the automating one) is 64bit, on a 64bit win7. Some of the information that needs to be shared has to ...
4
votes
2answers
2k views

How do I install Python 2.7.3 32 bit and 64 bit on Windows side by side

I have Windows Vista 64. I have some projects requiring Python 2.7.3 64 bit and others requiring Python 2.7.3 32 bit (because some extensions do not work in 64 bit). How do I prevent the Python ...
0
votes
1answer
87 views

When I terminate a dying Perl test run using prove -v , why are results not saved to a text file via STDOUT?

I'm driving SeleniumRC and a page hangs, so I hit Ctrl-C to stop testing and address the issue. If I pass a txt file via the command line like so: prove -v some.t :: data.csv > testresults.txt ...
1
vote
0answers
225 views

How do you expose a static lib's assembler proc, as a dllexport of the outer DLL?

As inline assembler is not supported in 64-bit VC++ (2010), I recently converted a 70 page static C++ library of inline functions to a straight 64-bit assembler static lib. The 64-bit DLL containing ...
1
vote
1answer
72 views

How to detect whether the OS supports 16-bit exes in Python?

This is essentially the same as asking how to detect that I am running under a 64-bit version of Windows. os.name gives 'nt' under both win7 64 and winXP 32 (my two available test computers). ...
1
vote
1answer
250 views

How to ensure that memory mapped files are always in RAM

Is it possible to create a memory mapped file for interprocess communication with a guarantee that the content is always being kept in RAM and not flushed to page file? I am currently working on a ...
2
votes
1answer
236 views

How do I trap Windows messages?

I'm making a program called Pwn16. It allows 16-bit applications to run on 64-bit systems by emulating an Intel 8086/Pentium processor and a DOS/Win3.x/Win98 system. Pwn16 uses a small loader program ...
1
vote
0answers
1k views

Source for pthread for 64 bit windows

I have an open-source project that must build under Win32/Win64/Linux/MacOSX. We would like to use pthreads to support our multithreading paradigm, however as my project is open-source everything ...
1
vote
3answers
1k views

Delphi XE2: Convert a ASM method for Win64 platform

When I attempt to compile a pascal unit for Win64 platform, I encounter errors. The methods contain ASM block. I have no ideas how to make it works for Win64 platform: Method 1: Function ...
8
votes
3answers
815 views

Porting Delphi code to 64 bit - Why no compiler warnings?

We have a large Delphi XE codebase we want to port to 64 bit. I own a Delphi XE2 licence and I cannot find any warning nor hint that can help me to detect valid 32 bit constructions that can now lead ...
0
votes
1answer
99 views

Can't run application under win 64 on different machine

I have been writnig my app in MS VC++ 2008. Under win32 my application works fine on machines without VC++, but version compiled as 64bit doesn't. I am having this error: "Application has failed ...
0
votes
2answers
471 views

visual c++ virtual camera application doesn't work on 64-bit windows

I am trying to implement a virtual camera application in Visual C++ for 64 bit Windows. I started with the code here: tmhare.mvps.org/downloads/vcam.zip which emulates a video capture device using ...
2
votes
1answer
598 views

msvcp90.dll depends on wrong msvcr90.dll?

I have a dll project built with VS2008 (amd64). The manifest of the dll say <assemblyIdentity type='win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='amd64' ...
3
votes
2answers
1k views

PyPy on Windows 7 x64?

I am trying to use PyPy on a Windows 7 x64 machine but do not find any way to do it. Apparently there is a win32 binary, but no x64 binary or installation guide. I am currently using Python 2.7.2 ...
2
votes
2answers
813 views

Building 64bit libpython27.a using cygwin, dlltool

I'm trying to build a python extension DLL on a 64bit Win7 machine using cygwin (as cygwin only run as 32bit process, this is actually cross-compiling). I created libpython27.a myself from ...
6
votes
2answers
193 views

In the Win64 ABI, can the reserved argument stack space be used for general purpose storage?

I'm learning x64 assembly on Windows for 'fun'. The MSDN documentation for the x64 calling convention on Windows says: The caller is responsible for allocating space for parameters to the callee, ...
0
votes
1answer
178 views

How can I programatically control multi-display setup?

I use a laptop +a widescreen monitor, as dual screen setup. Half the time when I reconnect the laptop back after working on it standalone , the dual-screen settings gets automatically switched to ...
0
votes
1answer
472 views

.net web app performing slowly on 64-bit windows / iis 7.5

I've got a web app written in asp.net 3.5 / sql server 2005 and it runs extremely fast on my local machine (winXP) & test server (win2003) however some pages run very slowly when on the production ...
3
votes
2answers
3k views

Executing 32bit and 64bit mshta.exe (bypass default handler)

I'd like to be able to launch a page.hta in 32bit and 64bit versions of the mshta.exe. Create the file c:\page.hta <body onclick="if(confirm('Close? (onclick)')){self.close();}"> ...
1
vote
2answers
672 views

cython setup.py gives .o instead of .dll

I am a newbie to cython, so pardon me if I am missing something obvious here. I am trying to build c extensions to be used in python for enhanced performance. I have fc.py module with a bunch of ...
0
votes
1answer
931 views

Erro loading third party dll from Asp.Net Application

the situation is quite complex ( and my english very basic) but let's try to explain: i'm developing a Asp.net web service calling a method from an external dll. This external dll calls some ...
1
vote
1answer
307 views

Weird P/Invoke issue on Win 7 x64

I'm P/Invoking to CreateRectRgn in gdi32.dll. The normal P/Invoke signature for this function is: [DllImport("gdi32", SetLastError=true)] static extern IntPtr CreateRectRgn(int nLeft, int nTop, ...
7
votes
5answers
2k views

64-bit Windows API: what is the size of a C/C++ “DWORD”?

I only have 32-bit Windows installed, so I cannot verify this myself. If I understand correctly, the DWORD used in various places in the Microsoft API is in reference to the original 16-bit word, and ...
9
votes
1answer
4k views

rundll32.exe equivalent for 64-bit DLLs

Is there an equivalent of rundll32.exe for calling 64-bit DLLs?
0
votes
2answers
2k views

SendInput Keys in Win32 & Win64 machines

I have used sendInput() under xp 32bits using webservices to push F5 of current focused windows. Now under Vista win64 i can´t obtain this result. Some articles point uint problems using 4bits or ...

1 2