c++ Programming Glossary: luid
_DEBUG vs NDEBUG http://stackoverflow.com/questions/2290509/debug-vs-ndebug
How can I get a process handle by its name in C++? http://stackoverflow.com/questions/865152/how-can-i-get-a-process-handle-by-its-name-in-c tlhelp32.h void EnableDebugPriv HANDLE hToken LUID luid TOKEN_PRIVILEGES tkp OpenProcessToken GetCurrentProcess TOKEN_ADJUST_PRIVILEGES.. TOKEN_QUERY hToken LookupPrivilegeValue NULL SE_DEBUG_NAME luid tkp.PrivilegeCount 1 tkp.Privileges 0 .Luid luid tkp.Privileges.. luid tkp.PrivilegeCount 1 tkp.Privileges 0 .Luid luid tkp.Privileges 0 .Attributes SE_PRIVILEGE_ENABLED AdjustTokenPrivileges..
How can I hook Windows functions in C/C++? http://stackoverflow.com/questions/873658/how-can-i-hook-windows-functions-in-c-c tlhelp32.h void EnableDebugPriv HANDLE hToken LUID luid TOKEN_PRIVILEGES tkp OpenProcessToken GetCurrentProcess TOKEN_ADJUST_PRIVILEGES.. TOKEN_QUERY hToken LookupPrivilegeValue NULL SE_DEBUG_NAME luid tkp.PrivilegeCount 1 tkp.Privileges 0 .Luid luid tkp.Privileges.. luid tkp.PrivilegeCount 1 tkp.Privileges 0 .Luid luid tkp.Privileges 0 .Attributes SE_PRIVILEGE_ENABLED AdjustTokenPrivileges..
|