0
votes
What is the best way to build open source libraries DLLs for Windows developers to use?
If you're using http://www.cmake.org/, cmake can create the Makefile (for Unix) and project file (for Visual Studio). This is what for example the …
6
votes
Stop a batch file from autoclosing.
Depends on the exact question.
Normally 'pause' does the job within a .bat file.
If you want cmd.exe not to close to be able to remain typing, use 'cmd /k command'.
…
0
votes
How to set Araxis as diff / merge tool for MSYS git?
Since I've been bitten to customised git differs/mergers, I thought I would try to fix this one for once and for all. I got to the point where AraxisMerge started, but without the titles of the tab …
7
votes
Hide a file or directory using the Windows API from C
You can do it by calling SetFileAttributes and setting the FILE_ATTRIBUTE_HIDDEN flag. See http://msdn.micr …
