CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Posts
    9

    How can i use SDK??

    I don't konw how to use the SDK
    Can anybody explain me quckly?
    Than you



  2. #2
    Join Date
    May 1999
    Location
    Seattle, WA USA
    Posts
    423

    Re: How can i use SDK??

    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


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured