* sec_auth.cc (str2buf2uni): Remove.
* security.h (str2buf2uni): Remove declaration.
This commit is contained in:
parent
28186e81d9
commit
6a32d500a9
@ -1,3 +1,8 @@
|
||||
2009-03-23 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* sec_auth.cc (str2buf2uni): Remove.
|
||||
* security.h (str2buf2uni): Remove declaration.
|
||||
|
||||
2009-03-24 Yaakov Selkowitz <yselkowitz@cygwin.com>
|
||||
|
||||
* include/mntent.h: Remove declarations of nonexistant addmntent
|
||||
|
@ -126,19 +126,6 @@ str2buf2lsa (LSA_STRING &tgt, char *buf, const char *srcstr)
|
||||
memcpy (buf, srcstr, tgt.MaximumLength);
|
||||
}
|
||||
|
||||
/* The dimension of buf is assumed to be at least strlen(srcstr) + 1,
|
||||
The result will be shorter if the input has multibyte chars */
|
||||
void
|
||||
str2buf2uni (UNICODE_STRING &tgt, WCHAR *buf, const char *srcstr)
|
||||
{
|
||||
tgt.Buffer = (PWCHAR) buf;
|
||||
tgt.MaximumLength = (strlen (srcstr) + 1) * sizeof (WCHAR);
|
||||
tgt.Length = sys_mbstowcs (buf, tgt.MaximumLength / sizeof (WCHAR), srcstr)
|
||||
* sizeof (WCHAR);
|
||||
if (tgt.Length)
|
||||
tgt.Length -= sizeof (WCHAR);
|
||||
}
|
||||
|
||||
void
|
||||
str2uni_cat (UNICODE_STRING &tgt, const char *srcstr)
|
||||
{
|
||||
|
@ -365,7 +365,6 @@ int getacl (HANDLE, path_conv &, int, __acl32 *);
|
||||
int setacl (HANDLE, path_conv &, int, __acl32 *, bool &);
|
||||
|
||||
struct _UNICODE_STRING;
|
||||
void __stdcall str2buf2uni (_UNICODE_STRING &, WCHAR *, const char *) __attribute__ ((regparm (3)));
|
||||
void __stdcall str2uni_cat (_UNICODE_STRING &, const char *) __attribute__ ((regparm (2)));
|
||||
|
||||
/* Function creating a token by calling NtCreateToken. */
|
||||
|
Loading…
Reference in New Issue
Block a user