Re: Windows c programing
From: CBFalconer (cbfalconer_at_yahoo.com)
Date: 11/16/03
- Next message: Richard Heathfield: "Re: Using arrays in C."
- Previous message: CBFalconer: "Re: Pointer mutations"
- In reply to: Glen: "Windows c programing"
- Next in thread: Malcolm: "Re: Windows c programing"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Sun, 16 Nov 2003 19:50:30 GMT
Glen wrote:
>
> Can some one explain me why below example work
>
> LRESULT CALLBACK WndProc (HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM
> lParam)
> {
> HDC hdc;
> PAINTSTRUCT ps;
> RECT rect;
> DCB dcb;
> HANDLE hCom;
> BOOL fSuccess, fGet, fSet;
> char *pcCommPort = "COM1";
> DWORD errnum;
It doesn't. So far no identifiers have been defined. The commas
and parentheses might suggest, to a C programmer, that some sort
of function is being defined.
You might try some newsgroup where this collection of
nomenclatures has some meaning. c.l.c is not one.
I take it back. The identifier "char" has meaning, as does the
phrase following it.
-- Chuck F (cbfalconer@yahoo.com) (cbfalconer@worldnet.att.net) Available for consulting/temporary embedded and systems. <http://cbfalconer.home.att.net> USE worldnet address!
- Next message: Richard Heathfield: "Re: Using arrays in C."
- Previous message: CBFalconer: "Re: Pointer mutations"
- In reply to: Glen: "Windows c programing"
- Next in thread: Malcolm: "Re: Windows c programing"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|