-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I am developing an application that has two DLLs one is a 32bit version another is 64bit version,
Client is 32bit
Server is 64bit
My question is is there a way I can say use the 32bit dll when doing Debug/Release and use 64bit dll when I perform a publish.
I realize I can solve this problem…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Is there anyway from a C prog to find whether the OS is currently running in 32bit or 64bit mode. I am using a simple program as below
int main(void){
switch(sizeof(void*)){
case 4: printf("32\n");
break;
case 8: printf("64\n");
break;
}
}
Is this a correct…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi, I'm trying to use MapViewOfFile in a 64 bit process on a file that is already mapped to memory of another 32 bit process. It fails and gives me an "access denied" error. Is this a known Windows limitation or am I doing something wrong? Same code works fine with 2 32bit processes.
The code…
>>> More
-
as seen on Super User
- Search for 'Super User'
http://superuser.com/questions/73327/can-i-use-a-windows-7-professional-32-bit-oem-licence-to-install-the-64-bit-versi
This questions asks it generically, but does anybody know specifically about Lenovo outlet computers?
I want to buy an outlet computer with Windows 7 Home Premium 32, but I would…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I have an old 32bit delphi application (with no source code), that is used as a windows service. It runs fine on windows 2003 32bit.
I do not know if it has been created as a service originally, or converted to one later on. It is supposed to get installed to the server using a /install flag on the…
>>> More