Hi, I'm developing a small SDK in C, is there any good book or article on best practice and guidelines in the subject? I mean functions design, source code organization, portability issues etc.
|
|
|
|
|
|
|
Good question! I haven't seen any good book on this topic. But I have seen these things about the importance of making an effort and some general thoughts. Personally I'd focus on:
Well stuff like that... |
||
|
|
|
|
Scott Meyers has some interesting things to say about designing APIs. His maxim is:
There's an article by him on the subject here (pdf). Googling for that also thew up this page listing various articles on API design. |
||
|
|
|
|
Read up on SDKs on wikipedia. It is mainly an API with any needed documentation and code/ddls packaged into a "kit". What is this SDK intended for? |
||
|
|
|
|
We've a piece of software which does some data processing and shows the result in several different views. Some of our clients want to use our data processing algorithms and our views in their own software, so I've started working on some kind of SDK for them. I've never done that before. Although I've used Microsoft SDK a lot and, in general, I've an idea how SDK should look like however it would be great to consult some good books on the subject. |
||
|
|
