
			      WinOldAp for NDN
		v1.0 (c) 2009, Stefan Weber (ho1459@bnhof.de)
			    aka. Angels Holocaust


ʹ WHAT IS IT? 
Microsoft Windows9x operating systems provided a DOS compatibility layer
which enabled DOS programs to use several Windows functions.
This layer is very incomplete in Windows NT+ operating systems.

This WINOLDAP replacment enables DOS programs to use several functions not
available in Windows NT+ operating systems.

Here's an example list of features that the NDN WinOldAp provides;
 - System clipboard access
 - Window title change
 - Release time slice
 - ...

ʹ SOURCE CODE 
This has been tested with VIRTUAL PASCAL (VP) and probably needs some
modifications to work with FREE PASCAL (FP - to be tested).

This software has no special license, if you make any changes to it let me
know. If you release a software using it, give me credit.

ʹ DOCUMENTATION 
There's no real documentation available. The sources are well documented.
The directory W2KDDK\ contains related files from the
"Microsoft Windows 2000 DDK".

ʹ INSTALLATION 
Compile the WINOLDAP.DLL by calling "make.bat", which you probably will have
to modify for your needs.

Include the unit winoldif.pas in your DPMI32 application. You probably need
to call the init code again if you didn't install the WINOLDAP.DLL in the current
or Windows System directory:

  if winoldif.GetLastError( nil ) <> 0 then
  begin
    S := ProgramSourceDir + 'DLL\' + winoldif.WINOLDAP_DLL_NAME;
    winoldif.SetVddData( @S, nil, nil, True );
  end;

ʹ EOF 
