summaryrefslogtreecommitdiff
path: root/src/pal/src/include/pal/identity.hpp
blob: bd64a659ac034d9e20e741857f1a5a210836ef7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/*++



Module Name:

    include/pal/identity.hpp

Abstract:

    Header file for identity functions.



--*/

#ifndef _PAL_IDENTITY_HPP_
#define _PAL_IDENTITY_HPP_

#include "config.h"
#include "pal/palinternal.h"

/*++

Function:
  IdentityInitialize

--*/
BOOL IdentityInitialize();

/*++
Function:
  IdentityCleanup

--*/
VOID IdentityCleanup();

#if HAVE_GETPWUID_R
namespace CorUnix
{   
    int
    InternalGetpwuid_r(
        CPalThread *pPalThread,
        uid_t uid,
        struct passwd *pPasswd,
        char *pchBuffer,
        size_t nBufSize,
        struct passwd **ppResult
        ); 
}
#endif /* HAVE_GETPWUID_R */

#endif /* _PAL_IDENTITY_HPP_ */