Relative Content

Tag Archive for libraries

Should unit test be in separated repository?

Should I put unit testing stuffs in a separate repository, not in the same repository as the programming library?
So I reference the programming library as submodule.
But most open source projects that I have seen do not organize the projects like what I mention above.
Can anyone explain which approach is better?

Why don’t modern libraries use OOP

I’m a beginner-level C++ programmer, but I understand the concepts of the language fairly well. When I began to learn external C++ libraries, like SDL, OpenGL (maybe something else too), to my great surprise I found out that they don’t use C++ concepts at all.

Restrictions Calling DLLs Across Technologies?

I want to call a DLL in my programming language of ‘choice’. The documentation surrounding this clearly states that it must be a 32-bit DLL written in C, C++ or Delphi. But I wanted to call a DLL written in C#. It goes on to mention that the default calling mode is cdecl.