0
votes
2answers
65 views
how to fix the error c2118: negative subscript
Again, porting 32-bit app to 64-bit. I get the negative subscript error on the C_ASSERT statement mentioned below..
C_ASSERT (sizeof(somestruct) == some#define);
I also read the …
1
vote
1answer
50 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 …
0
votes
2answers
142 views
How to get environment variable in 64 bit Windows?
Is there any way to retrieve the environment variable in 64 bit machine.
I already have %abc% which returns me variable in 32 bit machine, but doesn't work in 64 bit.
My Mistake:
How can I get …
2
votes
2answers
42 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 …
1
vote
3answers
128 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?
0
votes
2answers
158 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 …
5
votes
6answers
465 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 …
2
votes
2answers
80 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
4answers
433 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 …
1
vote
3answers
542 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 …
0
votes
1answer
96 views
Reliably detecting OS architecture in a Windows Desktop Gadget
I have some Javascript code that will programmatically register an COM interop assembly by writing all the necessary keys and values to the registry. An older version of this COM object was written …
0
votes
2answers
140 views
Running a Data Synapse Win32 DLL Grid Node on a Windows 64 Machine?
We are developing a Data Synapse calc node process in C# that requires functionality in a Win32 DLL. We have no problems building this.
The question is it has to run on a Windows 64 bit system, with …
0
votes
1answer
281 views
Where’s _WIN64 defined in C++/CLI project compiled as x64?
It seems to be added automagically in every project I create and I compile for x64 but it doesn't even appear in the project's Configuration Properties/(C/C++)/Preprocessor when selecting the x64 …
1
vote
2answers
476 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 …
1
vote
3answers
1k 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 …
