~ubuntu-branches/ubuntu/oneiric/likewise-open/oneiric

« back to all changes in this revision

Viewing changes to librpc/include/lwrpc/dssetup.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Salley
  • Date: 2010-11-22 12:06:00 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20101122120600-8lba1fpceot71wlb
Tags: 6.0.0.53010-1
Likewise Open 6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Editor Settings: expandtabs and use 4 spaces for indentation
2
 
 * ex: set softtabstop=4 tabstop=8 expandtab shiftwidth=4: *
3
 
 */
4
 
 
5
 
/*
6
 
 * Copyright Likewise Software    2004-2009
7
 
 * All rights reserved.
8
 
 *
9
 
 * This library is free software; you can redistribute it and/or modify it
10
 
 * under the terms of the GNU Lesser General Public License as published by
11
 
 * the Free Software Foundation; either version 2.1 of the license, or (at
12
 
 * your option) any later version.
13
 
 *
14
 
 * This library is distributed in the hope that it will be useful,
15
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser
17
 
 * General Public License for more details.  You should have received a copy
18
 
 * of the GNU Lesser General Public License along with this program.  If
19
 
 * not, see <http://www.gnu.org/licenses/>.
20
 
 *
21
 
 * LIKEWISE SOFTWARE MAKES THIS SOFTWARE AVAILABLE UNDER OTHER LICENSING
22
 
 * TERMS AS WELL.  IF YOU HAVE ENTERED INTO A SEPARATE LICENSE AGREEMENT
23
 
 * WITH LIKEWISE SOFTWARE, THEN YOU MAY ELECT TO USE THE SOFTWARE UNDER THE
24
 
 * TERMS OF THAT SOFTWARE LICENSE AGREEMENT INSTEAD OF THE TERMS OF THE GNU
25
 
 * LESSER GENERAL PUBLIC LICENSE, NOTWITHSTANDING THE ABOVE NOTICE.  IF YOU
26
 
 * HAVE QUESTIONS, OR WISH TO REQUEST A COPY OF THE ALTERNATE LICENSING
27
 
 * TERMS OFFERED BY LIKEWISE SOFTWARE, PLEASE CONTACT LIKEWISE SOFTWARE AT
28
 
 * license@likewisesoftware.com
29
 
 */
30
 
 
31
 
/*
32
 
 * Copyright (C) Likewise Software. All rights reserved.
33
 
 *
34
 
 * Module Name:
35
 
 *
36
 
 *        dssetup.h
37
 
 *
38
 
 * Abstract:
39
 
 *
40
 
 *        Remote Procedure Call (RPC) Client Interface
41
 
 *
42
 
 *        Directory Services Setup (DsSetup) header
43
 
 *
44
 
 * Authors: Rafal Szczesniak (rafal@likewise.com)
45
 
 */
46
 
 
47
 
#ifndef _DSSETUP_H_
48
 
#define _DSSETUP_H_
49
 
 
50
 
#include <lwrpc/dsrbinding.h>
51
 
#include <lwrpc/dsrdefs.h>
52
 
 
53
 
 
54
 
WINERR
55
 
DsrRoleGetPrimaryDomainInformation(
56
 
    handle_t hBinding,
57
 
    UINT16 uiLevel,
58
 
    PDS_ROLE_INFO *ppInfo
59
 
    );
60
 
 
61
 
NTSTATUS
62
 
DsrInitMemory(
63
 
    VOID
64
 
    );
65
 
 
66
 
NTSTATUS
67
 
DsrDestroyMemory(
68
 
    VOID
69
 
    );
70
 
 
71
 
VOID
72
 
DsrFreeMemory(
73
 
    IN OUT PVOID pBuffer
74
 
    );
75
 
 
76
 
 
77
 
#endif /* _DSSETUP_H_ */
78
 
 
79
 
 
80
 
 
81
 
/*
82
 
local variables:
83
 
mode: c
84
 
c-basic-offset: 4
85
 
indent-tabs-mode: nil
86
 
tab-width: 4
87
 
end:
88
 
*/