1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

libsmbconf: put the smbconf context struct into a private header.

Michael
(This used to be commit a99ee5e536)
This commit is contained in:
Michael Adam 2008-03-19 12:37:17 +01:00
parent 153ed797e6
commit 7b53c84fe1
3 changed files with 29 additions and 3 deletions

View File

@ -19,6 +19,7 @@
*/
#include "includes.h"
#include "smbconf_private.h"
/**********************************************************************
*

View File

@ -20,9 +20,7 @@
#ifndef __LIBSMBCONF_H__
#define __LIBSMBCONF_H__
struct smbconf_ctx {
NT_USER_TOKEN *token;
};
struct smbconf_ctx;
/* the change sequence number */
struct smbconf_csn {

View File

@ -0,0 +1,27 @@
/*
* Unix SMB/CIFS implementation.
* libsmbconf - Samba configuration library
* Copyright (C) Michael Adam 2008
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __LIBSMBCONF_PRIVATE_H__
#define __LIBSMBCONF_PRIVATE_H__
struct smbconf_ctx {
NT_USER_TOKEN *token;
};
#endif