Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
3answers
3k views

Why 2 GB memory limit when running in 64 bit Windows?

I'm a member in a team that develop a Delphi application. The memory requirements are huge. 500 MB is normal but in some cases it got out of memory exception. The memory allocated in that cases is ...
9
votes
3answers
1k views

Write large file

I try to write to a large file, but it seems like it does not work for files larger than 2GB. I have tried with boost::iostreams::file_sink. Is this just a limit with the boost stream? Is there some ...
9
votes
2answers
3k views

What's an alternative to GWL_USERDATA for storing an object pointer?

In the Windows applications I work on, we have a custom framework that sits directly above Win32 (don't ask). When we create a window, our normal practice is to put this in the window's user data ...
8
votes
3answers
314 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 ...
7
votes
1answer
418 views

Why did Windows 64 choose to require xmm6 and xmm7 to be saved/restored?

Why did Windows 64 choose to require xmm6 and xmm7 to be saved/restored? In Windows 32, you could write assembly routines which clobbered xmm0...xmm7. But if you take that same assembly code and run ...
6
votes
1answer
1k views

rundll32.exe equivalent for 64-bit DLLs

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

How to use “GS:” in 64-bit Windows Assembly (eg, porting TLS code)

How can an user-space program configure "GS:" under 64-bit Windows (currently XP-64)? (By configure, set GS:0 at an arbitrary 64-bit linear address). I am trying to port a "JIT" environment to X86-64 ...
5
votes
1answer
108 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, ...
4
votes
5answers
411 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 ...
4
votes
3answers
2k views

win32 api programming book

Which is the best book for win32 api for beginners? Many in other posts suggested Charles Petzold's Programming Windows, but isn't that book old. As far as I remember it was written in Win9X, more ...
4
votes
2answers
3k views

How to compile existing posix code for 64-bit Windows?

I'm ok with using Cygwin or MinGW, but I need to end up with 64-bit code, not 32-bit. This is because I will be calling the DLL from 64-bit managed C#. I can't seem to find and good references for ...
3
votes
1answer
649 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();}"> ...
3
votes
1answer
213 views

Windows 7 Snap - Windows Message?

In my windows form application I want to capture the windows 7 snap message, does anyone know which message is generated when the window is about to be snapped. I tried to listen in to the ...
3
votes
1answer
102 views

Window properties - how are they implemented?

I'm curious if there is anyone around here that has inside information on the implementation details of window properties (SetProp, GetProp, etc.) in Windows. SetProp @ MSDN GetProp @ MSDN For ...
3
votes
1answer
875 views

libcurl .NET does not want to work on Win64

I wrote multi-threaded FTP uploader on C#.NET using libcurl.NET. Everything works fine on my machine, but when I give application (exe + libcurl.dll + 2 libcurl C# binding DLLs) to my friend who is ...
3
votes
4answers
925 views

How can my Perl script know it is running under Win64?

How can I have my Perl script detect it's running on a 64-bit Windows machine, even if it's a 32-bit perl?
3
votes
5answers
3k views

Using ImageList from VB6 application causes crash on Windows 7.0 64-bit

I have an old VB6 application that uses an ImageList control from COMCTL32.OCX ("Microsoft Windows Common Controls 5.0 (SP2)") to provide icons for TreeViews and ListViews. The app won't even launch ...
3
votes
3answers
1k views

Loading a 32-bit process in a 64-bit environment

I have a couple of questions as below. CHM is (Compiled HTML File) My CHM file has a link to launch a 32-bit application. The CHM file is coded in Javascript.This works fine in a 32-bit OS ...
3
votes
4answers
14k views

How do I resolve “%1 is not a valid Win32 application”?

Environment: Windows Server 2003 R2 Enterprise 64bit, SP2 .NET framework is supposedly installed (2.0 SP2, 3.0 SP2, 3.5 SP1) I say "supposedly" because they are listed as installed under Add/Remove ...
3
votes
3answers
6k views

How do you compile OpenSSL for x64?

After following the instructions in INSTALL.W64 I have two problems: The code is still written to the "out32" folder. I need to be able to link to both 32-bit and 64-bit versions of the library on ...
2
votes
1answer
234 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 ...
2
votes
2answers
4k views

MySQL ODBC 32 vs 64 bit

I have a 32-bit application that must run on a Windows x64 server using a 64-bit version of MySQL. Should I use a 32-bit ODBC driver or a 64-bit ODBC driver? Or should I install a 32-bit version of ...
2
votes
6answers
1k views

32bit matlab program, 64bit windows, how do I get 6GB of RAM?

I have some matlab code that will only run on 32 bit windows, but I need atleast 6 gb of ram to run it. In my lab the only machine that has 6gb ram is running 64 bit windows, is there some way to run ...
2
votes
1answer
144 views

Exceptions ignored in form_load for x64

When I throw an exception from form_load in my C# application it doesn't work when the platform is x64. (it acts as expected for x86) When I step through the code, I get to the line where the ...
2
votes
2answers
440 views

x64 va_list in Visual Studio 2005

I have a class non-static member function, and it has variable arguments, I'm compiling on Visual Studio 2005, with the 64-bit runtime, on 64-bit Windows. void Class::Foo(void* ptr,...) { va_list ...
2
votes
1answer
998 views

Virtual allocation granularity and page size

What are the typical values of the virtual allocation granularity and page size on Win64 platforms? That'd be SYSTEM_INFO's dwAllocationGranularity and dwPageSize. On Win32 systems these would be 64k ...
1
vote
3answers
226 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 ...
1
vote
2answers
212 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 ...
1
vote
2answers
311 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 ...
1
vote
1answer
147 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, ...
1
vote
2answers
644 views

Win32 to Win64 porting complitaion issue

I am porting a project from Win32 to Win64 bit. We are using make file getting following error 1>c:\program files (x86)\microsoft visual studio 9.0\vc\include\codeanalysis\sourceannotations.h(17) : ...
1
vote
1answer
362 views

Delphi Using LockFile on windows 7 64

I have found that if you open a file that resides on 32 bit server in a share folder from a 64 bit windows 7 machine, read it, lock it and then open it again. When you close all open handles the file ...
1
vote
1answer
219 views

Invoking a COM Server Dll on a 64-bit Windows Machine

I'm having some 64-bit issues. Here's the scoop: I have 32-bit COM exe (written in FoxPro). This exe invokes a 32-bit COM dll (also written in FoxPro). In the 32-bit Windows world, the dll is ...
1
vote
2answers
439 views

With python: intervals at x:00 repeat

How do I sched a repeat timer for 5 min intervals. Which fire at 00 seconds, then repeat at 00. Ok, not hard real-time but as close as possible with sys lags. Trying to avoid a build up in lags and ...
1
vote
3answers
827 views

Unresolved external symbols in compiling 32 bit application in Windows 64

So I am trying to compile legacy app from 32 bit to 64 bit.. I re-compiled all of the libs it used and made it look into WIN SDK6.0A x64 bit for libs.. I am using: Visual Studio Professional ...
1
vote
2answers
596 views

How to retreive correct path of either system32 or SysWOW64?

I have a 32-bit process that can run either in 32-bit or 64-bit Windows. So, naturally, if the process tried to access the file c:\windows\system32\file.ext, it would be redirected to ...
1
vote
2answers
518 views

How to detect if the Windows DWORD_PTR type is supported, using an ifdef?

There are some new integer types in the Windows API to support Win64. They haven't always been suppoprted; e.g. they aren't present in MSVC6. How can I write an #if condition to detect if these ...
1
vote
1answer
3k views

Tomcat on Windows x64 using 32-bit JDK

Hoping someone can help. The rub: I can't get Tomcat 5.5 to start as a windows service on 64-bit windows using a 32-bit JDK. the details: I've been running Tomcat 5.5 on Windows Server 2008 (x64) ...
1
vote
1answer
319 views

WebKit and npapi and mingw-w64

The problem is the following: On Windows x64, pointers are 64-bit, but type long is 32-bit. MSVC doesn't seem to care, and even omits warnings about pointer truncation on the default warning level. ...
1
vote
2answers
190 views

How should I name a native DLL distributed in both 32-bit and 64-bit form?

I have a commercial product that's a DLL (native 32-bit code), and now it's time to build a 64-bit version of it. So when installing on 64-bit Windows, the 32-bit version goes into Windows\SysWOW64, ...
1
vote
1answer
306 views

VC++ CLI application 32 - 64 bit CString question

SO, I am in the process of resolving the port of a 32bit app to 64 bit. When I compile for x64 I see a warning come up for the line ` CString sig; sig = "something"; sig = sig.left(strlen(something ...
1
vote
2answers
908 views

SHGetSpecialFolderPath, how to access 64bit CSIDL from 32bit application

Is there a way from a 32bit application running on a 64bit system to have access to the default folders for 64bit applications? For example, using SHGetSpecialFolderPath with CSIDL_PROGRAM_FILES from ...
1
vote
3answers
1k views

Compiling with Delphi 2009 from a command line under Windows Vista 64-bit

Has anyone succeeded to compile a Win32 GUI app with the command line dcc32.exe compiler, under 64-bit Windows Vista, without installing Delphi 2009? On our system it fails, with a message that the ...
1
vote
4answers
1k views

Run Win32 IIS applications under Windows XP 64bit

How do I run windows 32bit applications in IIS on Windows XP 64 bit? Note: This is not running within Visual Studio. Note: Only 404 errors are logged. Note: 404 errors caused by IIS disabling CGI ...
1
vote
4answers
805 views

VirtualStore not working on Vista x64

I have a little tray application that wants to write to its own folder under the Program Files directory. I know this is not an ultimate design and I will fix it, but first I want to understand how ...
1
vote
2answers
11k views

WinDbg, with minidump from native 32-bit app crashing on 64-bit Windows, won't load symbols for system DLLs

I've got a minidump file from a crash in one of our apps. It's a 32-bit native app, and it was running on 64-bit Windows. If I load the minidump file into WinDbg, WinDbg won't load the symbols for ...
0
votes
0answers
21 views

How to (maybe auto) enable a group object policy programmatically in Windows 7

I'm trying to create custom admx/adml policies. I can successfully make them, add them to the policy pool, and refresh it, but I'm at a loss as to how to enable them. I can enable them by hand, of ...
0
votes
1answer
42 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 to ...
0
votes
2answers
98 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 ...
0
votes
1answer
64 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' ...

1 2