Click to See Complete Forum and Search --> : How can i use SDK??


raul
May 14th, 1999, 11:30 AM
I don't konw how to use the SDK
Can anybody explain me quckly?
Than you

chiuyan
May 14th, 1999, 05:10 PM
an SDK is just a collection of header files, library files and/or cpp files, and hopefully some documentation. To use these things, you need to include the appropriate header files, and link to the appropriate library files.

Header files are included in your .cpp files (usually at the top) using the #include macro, linking to library files depends on your compiler--in Visual C++ it is under the Project/Settings menu option on the Linker tab.

There should be some sample files that come with whatever SDK you are trying to use, look at them & try to run them.

If you have any more specific questions--feel free to post them here.

--michael