I just downloaded the most recent version of Bloodshed Dev-C++, which I believe is the 5.0 Beta, and tried it out in Vista. It seems to run, I coded a small program just to see what it could do, and already, it couldn't find that MakeFile bit, and gave me an error. Wonder if Bloodshed's even supporting Vista at all now. Here's the code I was trying:
I was hoping that this console application would have compiled. I tried this in Win XP before, and it worked successfully. Wonder what makes Vista so different. Does this *sigh* HAVE to be built around .Net now? How much different would the code structure have to be to get this bloody code to compile right?
// Counter.c - Test program for Bloodshed C++ 4.9 // (c)2007, RAM Digital Media #include <conio.h> #include <stdio.h> // Start of program int main() { printf("Speed Counter Beta v1.0 Test Version\n"); printf("(c)2007, RAM Digital Media, Robert A. Morin\n"); printf("========================\n"); int x = 100; printf("Press <ENTER> to start test: \n"); getch(); printf ("X = %d\n", x); x = x + 1; printf ("End of Test, Press <ENTER> to return to prompt.\n"); getch(); return 0; }
I was hoping that this console application would have compiled. I tried this in Win XP before, and it worked successfully. Wonder what makes Vista so different. Does this *sigh* HAVE to be built around .Net now? How much different would the code structure have to be to get this bloody code to compile right?