Archive for Mai, 2019

GUID erzeugen (MinGW)

Donnerstag, Mai 9th, 2019

#define APPGUID "XXXXXXXX-49DC-452D-BD0A-4318719DE9B9"
// mit uuidgen erzeugt

static bool TestAppRunning()
{
  bool r = false;

  #ifdef _WIN32
  CreateMutexA(NULL, TRUE, APPGUID)
  if (GetLastError() == ERROR_ALREADY_EXISTS)
  {
    r = true;
  }
  #endif
  return r;
}




Zeilen in einem Projekt zählen

Donnerstag, Mai 9th, 2019
find .. -name '*.cpp' | xargs wc -l

X-Mouse Button Control

Samstag, Mai 4th, 2019


http://www.highrez.co.uk/downloads/XMouseButtonControl.htm