Added TaskManager app

This commit is contained in:
Anonymous
2014-01-16 20:06:39 -07:00
parent 39e541c767
commit 2bcd8a262c
46 changed files with 4822 additions and 0 deletions
@@ -0,0 +1,10 @@
namespace EnvironmentVariable
{
//This function takes a string in the form key=value. It will add
//value to the environment variable key if key exists. Otherwise it
//will create a new env called key and set it to value.
bool addToEnvironmentVariable(const char* key, const char* value);
bool setEnvironmentVariable(const char* key, const char* value);
};