Click here to Skip to main content
15,886,519 members
Articles / Programming Languages / C#

NT Security Classes for .NET

Rate me:
Please Sign up or sign in to vote.
4.78/5 (33 votes)
19 Feb 2004CPOL2 min read 377.8K   4K   75  
A collection of .NET classes written in Managed C++ that faciliate the manipulation of NT security rights
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently,
// but are changed infrequently

#pragma once

#using <mscorlib.dll>
#using <system.dll>

#define _WIN32_WINNT 0x0500
#define WIN32_LEAN_AND_MEAN
namespace Win32
{
	#include <windows.h>
	#include <lmcons.h>
	#include <sddl.h>
	#include <aclapi.h>
}

//#include <atlsecurity.h>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer
United States United States
I have been a Windows software developer since 1991. Most of what I create fills the need for some aspect of bigger projects that I consult on.

Comments and Discussions