Re: simple program using kernel
From: Sigurd Stenersen (sigurds_at_utvikling.com)
Date: 09/08/04
- Next message: Omega Red: "Re: simple program using kernel"
- Previous message: R.Wieser: "Re: How to retrieve serial number of OS or CPU for copy protection?"
- In reply to: Bill Cunningham: "simple program using kernel"
- Next in thread: Omega Red: "Re: simple program using kernel"
- Messages sorted by: [ date ] [ thread ]
Date: Wed, 8 Sep 2004 23:24:40 +0200
Bill Cunningham wrote:
> Can anyone help me by showing how to print something like a
> phrase using win98 by using the kernel directly? Using a message box
> or something to say "windows 98" is fine from user mode but I'd like
> to try it from the kernel. Even in console mode is fine. What headers
> or libraries would I need to link to using C ?
#include <stdio.h>
void main()
{
puts("windows 98");
}
-- Sigurd http://utvikling.com
- Next message: Omega Red: "Re: simple program using kernel"
- Previous message: R.Wieser: "Re: How to retrieve serial number of OS or CPU for copy protection?"
- In reply to: Bill Cunningham: "simple program using kernel"
- Next in thread: Omega Red: "Re: simple program using kernel"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|