0
votes
2answers
52 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 th …
1
vote
1answer
44 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.lef …
0
votes
2answers
123 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:
…
1
vote
2answers
35 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 li …
1
vote
3answers
108 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
116 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 CSID …
5
votes
6answers
442 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" e …
2
votes
2answers
73 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* pt …
0
votes
1answer
83 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 …
1
vote
3answers
506 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 …
2
votes
4answers
370 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 ap …
0
votes
2answers
123 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 …
0
votes
1answer
219 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 se …
1
vote
2answers
403 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 g …
3
votes
3answers
427 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 …
