473,387 Members | 1,724 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

moderator for c++ standard

I'd like to elicit comment from the moderator of the full-contact version of
this forum. In particular, I would like to know his philosophy on the
language and I means by which I can identify him. Cordially, bfx
Jun 29 '06 #1
10 1501
BilfFord X posted:
I'd like to elicit comment from the moderator of the full-contact
version of this forum. In particular, I would like to know his
philosophy on the language and I means by which I can identify him.
Cordially, bfx

"Full-contact version of this forum"... ?

How about "uncensored, genuine, real-time version of this forum"?
comp.lang.c++ doesn't have a moderator.
--

Frederick Gotham
Jun 29 '06 #2

"Frederick Gotham" <fg*******@SPAM.com> wrote in message
news:Bg*******************@news.indigo.ie...
BilfFord X posted:
I'd like to elicit comment from the moderator of the full-contact
version of this forum. In particular, I would like to know his
philosophy on the language and I means by which I can identify him.
Cordially, bfx

"Full-contact version of this forum"... ?

How about "uncensored, genuine, real-time version of this forum"?
comp.lang.c++ doesn't have a moderator.
--

Frederick Gotham

--------
[nothing snipped, appended--you could call it a repost
if you were new. This guy has good stuff.
By 'this' I do not mean the OP. bfx
Jun 29 '06 #3
BilfFord X posted:
[nothing snipped, appended--you could call it a repost
if you were new. This guy has good stuff.
By 'this' I do not mean the OP. bfx

Address me intelligibly, or don't address me at all.

--

Frederick Gotham
Jun 29 '06 #4

"BilfFord X" <in*****@invalid.nyet> wrote in message
news:44***********************@news.usenetmonster. com...

"Frederick Gotham" <fg*******@SPAM.com> wrote in message
news:Bg*******************@news.indigo.ie...
BilfFord X posted:
I'd like to elicit comment from the moderator of the full-contact
version of this forum. In particular, I would like to know his
philosophy on the language and I means by which I can identify him.
Cordially, bfx

"Full-contact version of this forum"... ?

How about "uncensored, genuine, real-time version of this forum"?
comp.lang.c++ doesn't have a moderator.
--

Frederick Gotham

--------
[nothing snipped, appended--you could call it a repost
if you were new. This guy has good stuff.
By 'this' I do not mean the OP. bfx


Is that English? I know they're English words, but they don't seem to be
arranged in any order that makes any sense.

Maybe you could rephrase what you're trying to say?
Jun 29 '06 #5

"Frederick Gotham" <fg*******@SPAM.com> wrote in message
news:pF*******************@news.indigo.ie...
BilfFord X posted: Address me intelligibly, or don't address me at all.

Fair enough. I'm cloudy on what the entry point is going to be in progs
that are topical here. I'm given to understand that a person can talk about
how to have c++ interact with the winapi in a standard manner. If I'm OT
already, I need to know.

So in K&R we had main() as the entry point.
If you don't have need for argv and arc then we had int main(void) as the
entry.
Is this as acceptable entry:
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR
szCmdLine, int iCmdShow)
? cordially, bfx

Jul 1 '06 #6
BilfFord X posted:

Fair enough. I'm cloudy on what the entry point is going to be in
progs that are topical here.

I'll try to be as courteous as I can in conveying this to you:
I don't want to talk to you.
--

Frederick Gotham
Jul 1 '06 #7

"Jim Langston" <ta*******@rocketmail.com> wrote in message
news:Zy**************@fe05.lga...
"BilfFord X" <in*****@invalid.nyet> wrote in message Maybe you could rephrase what you're trying to say?

What's your philosophy on the language? Mine has evolved over the years and
has been heavily influenced by my proximity to the Microsoft bandwagon, by
theoreticians who haven't written compilable code since their days in
graduate school and by the all the fun and goofy things you can do now with
a telephone, computer and compiler. Does that make me different than joe
anybody around here?

Where do you think the language is going? cordially, bfx
Jul 1 '06 #8
BilfFord X wrote:

"Frederick Gotham" <fg*******@SPAM.com> wrote in message
news:pF*******************@news.indigo.ie...
BilfFord X posted:
Address me intelligibly, or don't address me at all.

Fair enough. I'm cloudy on what the entry point is going to be in
progs that are topical here. I'm given to understand that a person
can talk about how to have c++ interact with the winapi in a standard
manner. If I'm OT already, I need to know.


You're OT already.
So in K&R we had main() as the entry point.
If you don't have need for argv and arc then we had int main(void) as
the entry. Is this as acceptable entry:
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
PSTR szCmdLine, int iCmdShow) ? cordially, bfx

No implementation-specific stuff in appropriate here.

Brian
Jul 1 '06 #9
BilfFord X wrote:
[..] I'm cloudy on what the entry point is going to be in
progs that are topical here.
The only entry point to any C++ program is 'main'. It has the return
value type 'int' and can have two arguments or no arguments.
I'm given to understand that a person
can talk about how to have c++ interact with the winapi in a standard
manner. If I'm OT already, I need to know.
You can interact with any API in a manner that API defines. If you
want to talk MS Windows API in particular, you need to do that in
the newsgroup dedicated to MS Windows API, however.
So in K&R we had main() as the entry point.
We still do.
If you don't have need for argv and arc then we had int main(void) as
the entry.
Yes.
Is this as acceptable entry:
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR
szCmdLine, int iCmdShow)
? cordially, bfx


Anything is acceptable. The Standard says that implemenations are free
to provide (or require) any other functions as entry points. The catch
is that we don't discuss implementation-specific stuff here.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Jul 1 '06 #10

"Victor Bazarov" <v.********@comAcast.net> wrote in message
news:Gb******************************@comcast.com. ..
BilfFord X wrote:
[..] I'm cloudy on what the entry point is going to be in
progs that are topical here.


The only entry point to any C++ program is 'main'. It has the return
value type 'int' and can have two arguments or no arguments.
I'm given to understand that a person
can talk about how to have c++ interact with the winapi in a standard
manner. If I'm OT already, I need to know.


You can interact with any API in a manner that API defines. If you
want to talk MS Windows API in particular, you need to do that in
the newsgroup dedicated to MS Windows API, however.
So in K&R we had main() as the entry point.


We still do.
If you don't have need for argv and arc then we had int main(void) as
the entry.


Yes.
Is this as acceptable entry:
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR
szCmdLine, int iCmdShow)
? cordially, bfx


Anything is acceptable. The Standard says that implemenations are free
to provide (or require) any other functions as entry points. The catch
is that we don't discuss implementation-specific stuff here.


Rats. If the entry point isn't topical then I'm just going to be wasting
bandwidth. Thanks for replies, that is, the last two, and I'll be out the
door. cordially, bfx
Jul 1 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: xml-bindings-admin | last post by:
Your mail to 'xml-bindings' with the subject Re: Movie Is being held until the list moderator can review it for approval. The reason it is being held: SpamAssassin thinks there may be...
0
by: xml-admin | last post by:
Your mail to 'xml' with the subject Re: Movie Is being held until the list moderator can review it for approval. The reason it is being held: SpamAssassin thinks there may be spam in this...
0
by: zh-l10n-admin | last post by:
Your mail to 'Zh-l10n' with the subject Your details Is being held until the list moderator can review it for approval. The reason it is being held: Post by non-member to a members-only...
2
by: Dennisk | last post by:
I noticed my message on State Pattern did not make it on the list but for a short time... Why is that? Is there a better Group for Patterns Questions? -tx
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.