Page 1 of 1

Can we use c++ header file and libraries in protected mode ?

Posted: Fri Jan 28, 2011 5:40 am
by rakesh.sharnagate
I finished my bootloader and now I am working on Protected mode. :lol:

Can we used C++ header files and libraries directly for further development :?:

Re: Can we use c++ header file and libraries in protected mode ?

Posted: Sat Jan 29, 2011 5:00 pm
by Mike
Hello,

You can technically use any library routine that does not rely on an existing operating system environment. However a lot of the library routines (most) do and will need to be written for your OS.

Because you will end up writing most of the standard library anyways, the recommended approach is to create your own libraries or compile an existing CRT to your OS.