help!!!

Hello everbody!
I have problem about changing C code to MS NT environment.
This code has some libraries such as;

                            unistd.h
                            termio.h
                            sys/ioctl.h

and has
#define TLMNAME "dev/t1000"
statement

What are the equivalents of these libraries and this statement
in MSDOS (NT) environment

what can i use except these to compile program in Turbo C for NT

Thanks

hey,

btw,
unistd.h
termio.h

is not an ANSI standard AFAIK. so you could not expect them to exist in environment other than unix.

to compile you would better use the 32 bit compiler, like VisualC++.

Use the Win32 APIs to implement feature that is unix specific.
BTW it is better to write a program that uses ANSI standard.
It is more portable.

qodoc

yea