Thread: Detection of OS
View Single Post
Old 24th May 2009, 18:21   #4  |  Link
juGGaKNot
Registered User
 
juGGaKNot's Avatar
 
Join Date: Feb 2008
Posts: 733
Quote:
Originally Posted by LoRd_MuldeR View Post
I have attached a binary for you:
http://www.mediafire.com/file/vm2czjemiqt/IsWow64.exe

Code:
int main(int argc, _TCHAR* argv[])
{
  if(IsWow64())
  {
    printf("Running on WOW64\n");
    return 0;
  }
  else
  {
    printf("Running on 32-bit Windows\n");
    return 1;
  }
}
thnx

btw i am trying to use your makeinstantplayer to make an exe file with redirect but i cant find any readme

i want it to extract to same folder and open a webpage with 2 pages ( 2 links )

"%mypath%\bin\MakeInstantPlayer.exe" "/NOGUI" "/NOSPLASH" "/EXTRACT=%mypath%" "%mypath%\Final_Movie_X264.mp4"

i have all the files from your app in the bin
juGGaKNot is offline   Reply With Quote