Tag Archives: c

Single instance per session application with argument passing

Suppose you want to create an application which you want to limit to a single running instance, like some image viewers do for example. Also, you need different users on a Terminal Server not to conflict with each other. Oh, … Continue reading

Posted in Software Development | Tagged , , , | Leave a comment

The meaning of const in C

John Engelhart posted to Cocoa-dev a detailed explanation of what exactly const means in C programs. Keep in mind that he’s talking about C, not C++ (where const has a stronger meaning and even a slightly different semantic when used … Continue reading

Posted in Software Development | Tagged , | Leave a comment