|
|
|
|
|
by tremon
3344 days ago
|
|
Things like hitting private, undocumented APIs That's entirely Microsoft's fault too: they made internal APIs accessible to applications, and did not provide comprehensive documentation on the full features of their public API. The latter means that application developers were forced to just guess what a function could do. And since no API performs proper input validation, undocumented usage became the norm. |
|
Public APIs are documented, guaranteed to work like documented (otherwise it's a bug and will be fixed) and intended for others to call. Internal APIs are none of these things. They are not documented because they're not supposed to be called. Anything not documented in an API it (to me at last) something that's not guaranteed to remain like that. Whether it's a complete function or just a side-effect of something that is public.