summaryrefslogtreecommitdiff
path: root/vdagent/as_user.cpp
AgeCommit message (Collapse)AuthorFilesLines
2014-12-30vdagent: as_user: reorder initialization to make mingw-gcc happyUri Lublin1-2/+2
Fixes compiler warning that starts with: In file included from vdagent/as_user.cpp:19:0: vdagent/as_user.h: In constructor 'AsUser::AsUser(DWORD)': vdagent/as_user.h:35:10: warning: 'AsUser::_started' will be initialized after [-Wreorder] bool _started;
2013-11-13vdagent: add as_user to run tasks with user privilegesUri Lublin1-0/+73
The class calls Impersonate upon begin(), and Revert upon end() or destruction. The user is the current user that is logged in. create mode 100644 vdagent/as_user.cpp create mode 100644 vdagent/as_user.h