How many people here still develop apps in Win32 with C/C++?
-
For *real* old fashioned, you should have said 'just C'. Either way, looks like you found the only guy. Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
Link2006 wrote:
WIN32 API
Very rarely.
Link2006 wrote:
C/C++.
Yes.But all the code would be later integrated into MFC.
--[:jig:]-- [My Current Status] I dont know why the hell the script for voting 5 is disabled only for me?? :mad: -- modified at 3:35 Friday 21st July, 2006
-
Christian Graus wrote:
Either way, looks like you found the only guy.
Nope, he is not the only guy, because I do too. ;)
======================================= A goal without a plan remains a dream. =======================================
Now I understand why you're frustrated all the time... I wrote a whole window framework in Win32, to bridge to Python. It was fun, but I wouldn't want to do it again. Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
Link2006 wrote:
WIN32 API
Very rarely.
Link2006 wrote:
C/C++.
Yes.But all the code would be later integrated into MFC.
--[:jig:]-- [My Current Status] I dont know why the hell the script for voting 5 is disabled only for me?? :mad: -- modified at 3:35 Friday 21st July, 2006
VuNic wrote:
But all of them would be later integrated into MFC.
'All of them' ??? Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
VuNic wrote:
But all of them would be later integrated into MFC.
'All of them' ??? Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
Oh this one?, Yeah, that's a glicth in the translation Engine. fixed :->
--[:jig:]-- [My Current Status] I dont know why the hell the script for voting 5 is disabled only for me?? :mad:
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
Me!:)
---------------------------------------------- If you need a hammer get C and shut up. If you need a nail gun get C++ and shut up. If you don't need *those* things (and good design should tell you) then by all means get a factory, factory, factory. --code-frog@codeproject ---------------------------------------------- Why would you need to date, when C++ is your soul mate?! --Steve Echols@codeproject ----------------------------------------------
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
I do...well, only the window creation part - thats all I need for my Direct3D apps. rara avis in terris
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
Not entire apps, but Many snippets I write use raw Win32. It feels more straightforward than all the libraries out there.
Some of us walk the memory lane, others plummet into a rabbit hole
Tree in C# || Fold With Us! || sighist -
I have in the past and Ive also had root canal therapy at the dentist. I prefer the dentist. Objects in mirror are closer than they appear
Josh Gray wrote:
I prefer the dentist.
A smoking hot go-daddy girl? :rolleyes:
Some of us walk the memory lane, others plummet into a rabbit hole
Tree in C# || Fold With Us! || sighist -
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
Everything I develop at work pretty much.
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
Our current project[^] is written entirely in C++ as using a .NET language would have been too limiting (we have a single binary that targets all supported platforms; that simply wouldn't be possible in C# because of framework versioning restrictions). For a project of this size (approx 70,000 lines now, not including comments) using Win32 raw is just not productive, particularly as it makes heavy use of multithreading (there are two thread pools), UI and ActiveX. ATL 7.1 and WTL 7.5 provide everything we need so we don't need to incurr the overhead or architectural assumptions of MFC. Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
I am too Sometimes MFC, Jetli Constant Thing In World Is Change.
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
Link2006 wrote:
I mean good old fashion WIN32 API with C/C++. Anyone?
yes i one of them!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
Yes, for small utility programs that run on Windows CE. Either they have no UI or the UI support in ATL is overkill - if you only have one window displaying static text, the Win32 EXE AppWizard's auto-generated 'Hello World' app is enough, likewise if you just have a single dialog that just needs to display a progress bar. Stability. What an interesting concept. -- Chris Maunder
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
Link2006 wrote:
how many people here still develop apps in Win32 with C/C++?
Not sure I really count, but yes. Mostly because I rarely need more. As soon as I have established a window, the rest is all OpenGL and my code anyhow. I will occasionally use a routine for more, but very rarely. _________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
Absolutely! Low-level code (drivers, services).
-
Just curious, how many people here still develop apps in Win32 with C/C++? Not WinForm or even MFC, I mean good old fashion WIN32 API with C/C++. Anyone?
======================================= A goal without a plan remains a dream. =======================================
I still use a lot of raw Win32 API and C, but I'm also becoming a game programmer using OpenGL and a multimedia library I'm working on. For normal, data-driven apps, I'd probably use something higher level though, but for games, I have the need for speed. :cool: Also, I do like being able to make the occasional app with no dependencies either.
Jeremy Falcon