aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/security.h
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2002-12-14 17:23:42 +0000
committerCorinna Vinschen <corinna@vinschen.de>2002-12-14 17:23:42 +0000
commit85ecb9be00c71d3bc2bc66c2c166d7a8245a8c1d (patch)
treee451a0325fdf4966e1733295a67698bb975688fe /winsup/cygwin/security.h
parentb60e545bb64f96a4eaad691e623891baed6ffbcf (diff)
downloadnewlib-85ecb9be00c71d3bc2bc66c2c166d7a8245a8c1d.zip
newlib-85ecb9be00c71d3bc2bc66c2c166d7a8245a8c1d.tar.gz
newlib-85ecb9be00c71d3bc2bc66c2c166d7a8245a8c1d.tar.bz2
2002-12-14 Corinna Vinschen <corinna@vinschen.de>
* dcrt0.cc (dll_crt0_1): Call well known SID initializer function. * security.h (cygsid::init): Declare new static method. * sec_helper.cc (cygsid::init): New method for initializing well known SIDs. 2002-12-14 Pierre Humblet <pierre.humblet@ieee.org> * security.h: Declare well_known_creator_group_sid. * sec_helper.cc: Define and initialize well_known_creator_group_sid.
Diffstat (limited to 'winsup/cygwin/security.h')
-rw-r--r--winsup/cygwin/security.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/security.h b/winsup/cygwin/security.h
index 7c95ce8..7ed0307 100644
--- a/winsup/cygwin/security.h
+++ b/winsup/cygwin/security.h
@@ -40,6 +40,7 @@ class cygsid {
}
public:
+ static void init();
inline operator const PSID () { return psid; }
inline const PSID operator= (cygsid &nsid)
@@ -184,6 +185,7 @@ extern cygsid well_known_null_sid;
extern cygsid well_known_world_sid;
extern cygsid well_known_local_sid;
extern cygsid well_known_creator_owner_sid;
+extern cygsid well_known_creator_group_sid;
extern cygsid well_known_dialup_sid;
extern cygsid well_known_network_sid;
extern cygsid well_known_batch_sid;