Click here to Skip to main content
15,894,266 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Exception Error. Pin
Code-o-mat28-Jul-09 10:46
Code-o-mat28-Jul-09 10:46 
GeneralRe: Exception Error. Pin
FISH78628-Jul-09 11:09
FISH78628-Jul-09 11:09 
GeneralRe: Exception Error. Pin
Code-o-mat29-Jul-09 0:24
Code-o-mat29-Jul-09 0:24 
GeneralRe: Exception Error. Pin
FISH78629-Jul-09 9:36
FISH78629-Jul-09 9:36 
GeneralRe: Exception Error. Pin
Code-o-mat29-Jul-09 9:41
Code-o-mat29-Jul-09 9:41 
QuestionHow to put something in status bar at first launch ? Pin
mesajflaviu23-Jul-09 3:52
mesajflaviu23-Jul-09 3:52 
Questionconst in class as a member variable? Pin
sam_psycho23-Jul-09 3:43
sam_psycho23-Jul-09 3:43 
AnswerRe: const in class as a member variable? Pin
Cedric Moonen23-Jul-09 3:47
Cedric Moonen23-Jul-09 3:47 
GeneralRe: const in class as a member variable? Pin
sam_psycho23-Jul-09 3:56
sam_psycho23-Jul-09 3:56 
GeneralRe: const in class as a member variable? Pin
Cedric Moonen23-Jul-09 3:58
Cedric Moonen23-Jul-09 3:58 
AnswerRe: const in class as a member variable? Pin
CPallini23-Jul-09 3:53
mveCPallini23-Jul-09 3:53 
GeneralRe: const in class as a member variable? Pin
sam_psycho23-Jul-09 4:20
sam_psycho23-Jul-09 4:20 
GeneralRe: const in class as a member variable? Pin
CPallini23-Jul-09 6:06
mveCPallini23-Jul-09 6:06 
GeneralRe: const in class as a member variable? Pin
sam_psycho23-Jul-09 6:22
sam_psycho23-Jul-09 6:22 
GeneralRe: const in class as a member variable? Pin
CPallini23-Jul-09 6:50
mveCPallini23-Jul-09 6:50 
QuestionTitleBar Pin
kumar sanghvi23-Jul-09 3:36
kumar sanghvi23-Jul-09 3:36 
QuestionRe: TitleBar Pin
Mahesh Kulkarni23-Jul-09 20:59
Mahesh Kulkarni23-Jul-09 20:59 
QuestionWhich low-level I/O API is better? MFC or POSIX Pin
Dimitris Vikeloudas23-Jul-09 3:13
Dimitris Vikeloudas23-Jul-09 3:13 
AnswerRe: Which low-level I/O API is better? MFC or POSIX Pin
CPallini23-Jul-09 3:41
mveCPallini23-Jul-09 3:41 
AnswerRe: Which low-level I/O API is better? MFC or POSIX Pin
RomanMzh23-Jul-09 3:50
RomanMzh23-Jul-09 3:50 
Short answer
If your only targeting Windows platforms use CreateFile.

Longer answer
The main reason you would want to use the CRT functions (open() close() etc) is to make your program more portable there isn't any obvious advantage in speed or performance.
That said, using win32 APIs does allows you to specify various parameters that CRT doesn't like Security attributes, Template file etc.

It doesn't really matter what compiler you use in terms of the APIs you call the CRT you will use is the same regardless of the compiler used. That said I don't see a reason to use gcc to compile code for Windows.
GeneralRe: Which low-level I/O API is better? MFC or POSIX Pin
Dimitris Vikeloudas23-Jul-09 4:25
Dimitris Vikeloudas23-Jul-09 4:25 
GeneralRe: Which low-level I/O API is better? MFC or POSIX Pin
Randor 23-Jul-09 4:58
professional Randor 23-Jul-09 4:58 
GeneralRe: Which low-level I/O API is better? MFC or POSIX Pin
Dimitris Vikeloudas23-Jul-09 6:09
Dimitris Vikeloudas23-Jul-09 6:09 
QuestionSetOwner(CWnd* pOwnerWnd); Pin
Rakesh523-Jul-09 3:02
Rakesh523-Jul-09 3:02 
AnswerRe: SetOwner(CWnd* pOwnerWnd); Pin
CPallini23-Jul-09 3:47
mveCPallini23-Jul-09 3:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.