How was Windows made ?

C

Chris T

Hi folks !

Does anybody know what programming languages were used to make the
Windows kernel originally ? Are these still the same nowadays ?

Thanks for any information or link you can provide...
Chris
 
A

Anton Gavrilov

Chris said:
Hi folks !

Does anybody know what programming languages were used to make the
Windows kernel originally ? Are these still the same nowadays ?

Thanks for any information or link you can provide...
Chris

I thought everyone knew it. Why, I think I even had a piece of C code
somewhere... oh, here it goes:

// win31.c -- Windows 3.11 entry point
#include <stdio.h>
#include "swap.h"
#include "error.h"
#include "bugs.h"
#include "cruft.h"

void main (void)
{
// printf ("MS-DOS 6.22\n");
printf ("Starting Windows 3.1\n");

swap_a_while ();

while (1)
{
do_something_silly ();

if ((rand()%511) & 1)
crash ();
}

return 0; // exit with success (never reached)
}
 
A

aniltechie

Tim Hagan said:

Hi tim

Its no big deal developing/designing GUI.. and never think in any way
that microsoft is great.. i feel windows is a piece of shit.. i have
programmed my own GUI which looks similar to MS Windows without using
or rather inheriting any classes of Microsoft.. I have designed by own
GUi interface with "Buttons, Text Boxes, Combo Box, Radio Buttions,
Drop Down Menus, Progress Bars".. and it purely run in MS-DOS.. and
not MS-Windows..

So never think Microsoft is in any way great.. If u got through the
history of GUI's.. it was firstly developed/designed by a company
called PARC (Palo Alto Research Centre).. and then from this company
Apple Corporation stole the idea and then again from Apple
Corporation, Microsoft had stolen.. so the first basic GUi foundation
was set by PARC.. If any further queries.. please do mail me back.. at
(e-mail address removed)
 
T

Thomas Matthews

Hi tim

Its no big deal developing/designing GUI.. and never think in any way
that microsoft is great.. i feel windows is a piece of shit.. i have
programmed my own GUI which looks similar to MS Windows without using
or rather inheriting any classes of Microsoft.. I have designed by own
GUi interface with "Buttons, Text Boxes, Combo Box, Radio Buttions,
Drop Down Menus, Progress Bars".. and it purely run in MS-DOS.. and
not MS-Windows..

So never think Microsoft is in any way great.. If u got through the
history of GUI's.. it was firstly developed/designed by a company
called PARC (Palo Alto Research Centre).. and then from this company
Apple Corporation stole the idea and then again from Apple
Corporation, Microsoft had stolen.. so the first basic GUi foundation
was set by PARC.. If any further queries.. please do mail me back.. at
(e-mail address removed)

Just to clarify, the company is Xerox. PARC is a division of Xerox.
PARC started many inventions that Xerox didn't latch onto. I love the
copyright battles between Apple and Microsoft about Windows and Icons;
even though Xerox PARC invented the concept.

--
Thomas Matthews

C++ newsgroup welcome message:
http://www.slack.net/~shiva/welcome.txt
C++ Faq: http://www.parashift.com/c++-faq-lite
C Faq: http://www.eskimo.com/~scs/c-faq/top.html
alt.comp.lang.learn.c-c++ faq:
http://www.raos.demon.uk/acllc-c++/faq.html
Other sites:
http://www.josuttis.com -- C++ STL Library book
 
C

Chris T

Well, all of this is very interesting, but still no one has answered
my question...
So in the first times, Windows was only a GUI over MSDOS. But I think
it's not true anymore, am I wrong ?
And again, what kind of programming languages were used, at the
beginning and in the latest versions... Assembler, C, C++, something
else ?

thanks for your help.
Chris
 
B

Ben Pfaff

Well, all of this is very interesting, but still no one has answered
my question...

Your question is outside the domain of comp.lang.c, which discusses
only the standard C programming language, including the standard C
library. This is a remarkably narrow topic compared to what many
people expect.

For your convenience, the list below contains topics that are not
on-topic for comp.lang.c, and suggests newsgroups for you to explore
if you have questions about these topics. Please do observe proper
netiquette before posting to any of these newsgroups. In particular,
you should read the group's charter and FAQ, if any (FAQs are
available from www.faqs.org and other sources). If those fail to
answer your question then you should browse through at least two weeks
of recent articles to make sure that your question has not already
been answered.

* OS-specific questions, such as how to clear the screen,
access the network, list the files in a directory, or read
"piped" output from a subprocess. These questions should be
directed to OS-specific newsgroups, such as
comp.os.ms-windows.programmer.misc, comp.unix.programmer, or
comp.os.linux.development.apps.

* Compiler-specific questions, such as installation issues and
locations of header files. Ask about these in
compiler-specific newsgroups, such as gnu.gcc.help or
comp.os.ms-windows.programmer.misc. Questions about writing
compilers are appropriate in comp.compilers.

* Processor-specific questions, such as questions about
assembly and machine code. x86 questions are appropriate in
comp.lang.asm.x86, embedded system processor questions may
be appropriate in comp.arch.embedded.

* ABI-specific questions, such as how to interface assembly
code to C. These questions are both processor- and
OS-specific and should typically be asked in OS-specific
newsgroups.

* Algorithms, except questions about C implementations of
algorithms. "How do I implement algorithm X in C?" is not a
question about a C implementation of an algorithm, it is a
request for source code. Newsgroups comp.programming and
comp.theory may be appropriate.

* Making C interoperate with other languages. C has no
facilities for such interoperation. These questions should
be directed to system- or compiler-specific newsgroups. C++
has features for interoperating with C, so consider
comp.lang.c++ for such questions.

* The C standard, as opposed to standard C. Questions about
the C standard are best asked in comp.std.c.

* C++. Please do not post or cross-post questions about C++
to comp.lang.c. Ask C++ questions in C++ newsgroups, such
as comp.lang.c++ or comp.lang.c++.moderated.

* Test posts. Please test in a newsgroup meant for testing,
such as alt.test.

news.groups.questions is a good place to ask about the appropriate
newsgroup for a given topic.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,125
Messages
2,570,748
Members
47,302
Latest member
MitziWragg

Latest Threads

Top