Author Topic: Creating a C Win32 GUI Project?  (Read 8370 times)

mikedep333

  • Guest
Creating a C Win32 GUI Project?
« on: April 23, 2007, 02:46:34 am »
Hi,

I just taught myself programming in C itself, now I am working on programming in win32. However, when I go to create a win32 GUI project, it automatically makes my project in C++. How do I create a C win32 GUI project? I tried searching for this, but instead I get tons of words with the letter c in them.

Offline TDragon

  • Lives here!
  • ****
  • Posts: 943
    • TDM-GCC
Re: Creating a C Win32 GUI Project?
« Reply #1 on: April 23, 2007, 04:08:34 am »
Just rename the file to a .c extension; the generated code is all kosher C.
https://jmeubank.github.io/tdm-gcc/ - TDM-GCC compiler suite for Windows (GCC 9.2.0 2020-03-08, 32/64-bit, no extra DLLs)

mikedep333

  • Guest
Re: Creating a C Win32 GUI Project?
« Reply #2 on: April 23, 2007, 11:30:18 pm »
Alright, thanks alot.