473,396 Members | 1,891 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,396 software developers and data experts.

How was Windows made ?

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
Nov 14 '05 #1
6 9604
Chris T wrote:
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)
}
Nov 14 '05 #2
Chris T wrote:

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...


Here's a link:

http://groups.google.com/groups?hl=e...ake.ukrnet.net

--
Tim Hagan
Nov 14 '05 #3
Tim Hagan <no*****@boring.com> wrote in message news:<3F***************@boring.com>...
Chris T wrote:

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...


Here's a link:

http://groups.google.com/groups?hl=e...ake.ukrnet.net


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
an********@coolgoose.com
Nov 14 '05 #4
an********@coolgoose.com wrote:
Tim Hagan <no*****@boring.com> wrote in message news:<3F***************@boring.com>...
Chris T wrote:
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...


Here's a link:

http://groups.google.com/groups?hl=e...ake.ukrnet.net

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
an********@coolgoose.com


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

Nov 14 '05 #5
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

Thomas Matthews <Th****************************@sbcglobal.net> wrote in message news:<_Y*****************@newssvr33.news.prodigy.c om>...
an********@coolgoose.com wrote:
Tim Hagan <no*****@boring.com> wrote in message news:<3F***************@boring.com>...
Chris T wrote:

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...

Here's a link:

http://groups.google.com/groups?hl=e...ake.ukrnet.net

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
an********@coolgoose.com


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

Nov 14 '05 #6
c.*******@caramail.com (Chris T) writes:
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.

--
A competent C programmer knows how to write C programs correctly,
a C expert knows enough to argue with Dan Pop, and a C expert
expert knows not to bother.
Nov 14 '05 #7

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

Similar topics

14
by: BOOGIEMAN | last post by:
Well that's it, how do I make Windows Application with Python ??? Is there simple way that works 100% ? How can I rework visual design done in VS 2003 to use it for my python program ?
25
by: TPJ | last post by:
GUI's etc: PyGtk on Windows "(...) So if someone develops mainly for X and just wants to make sure that it is not impossible to run on Windows, you can use PyGTK. (...)", July 2nd, 1999 pyGTK...
0
by: Twan Kennis | last post by:
Hello! I do have the following problem: I've developed a Windows application which communicates with a DB2-database on the iSeries platform using an ODBC-connection string. This...
9
by: Kevin Spencer | last post by:
We just moved an ASP.Net app to a Windows 2003 Server, and the SMTPMail fails now with the following message: System.RuntimeType.InvokeDispMethod(String name, BindingFlags invokeAttr,...
7
by: Wayne Taylor | last post by:
Hello All I have built an ASP.NET web application using VS2003 and v1.1 of the framework. On my development system, Windows XP SP1a, all works well. When I transfer the application to Windows...
6
by: SusieQ | last post by:
Is it possible to have asp.net on a windows 2000 server and still retain compatibility with clients who don't want to use it? I installed Aspnet on my Windows 2000 server and it killed all my...
0
by: Nijazi Halimaji | last post by:
Hi newsgroup I have a little problem with my windows service. Before I made the service I made a Windows Application which reads and writes data with ODBC. I my Application it worked very...
44
by: Viken Karaguesian | last post by:
Hello all, On occasion I want to open hyperlinks (images, etc.) in a new window. In the past, I've used target="_blank" to open the link in a new window. However, using the "target" attribute...
3
by: shobhitguptait | last post by:
How to Run C#.NET Windows App on N/W with centralized DB using SQL SERVER 2000 Hello All...i m really grate full to c such a website where developers try to help people like us who face problems...
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:
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
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: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.