69 lines
1.1 KiB
C
69 lines
1.1 KiB
C
|
//+---------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 1992 - 1997.
|
||
|
//
|
||
|
// File: pwdsspp.h
|
||
|
//
|
||
|
// Contents:
|
||
|
//
|
||
|
// Classes:
|
||
|
//
|
||
|
// Functions:
|
||
|
//
|
||
|
// History: 9-08-97 RichardW Created
|
||
|
//
|
||
|
//----------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef __PWDSSPP_H__
|
||
|
#define __PWDSSPP_H__
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif // __cplusplus
|
||
|
|
||
|
#include <nt.h>
|
||
|
#include <ntrtl.h>
|
||
|
#include <nturtl.h>
|
||
|
#include <windows.h>
|
||
|
#include <rpc.h>
|
||
|
#include <lm.h>
|
||
|
#include <dsgetdc.h>
|
||
|
#include <ntdsapi.h>
|
||
|
#include <dnsapi.h>
|
||
|
#include <ntdsa.h>
|
||
|
|
||
|
#define SECURITY_WIN32
|
||
|
#define SECURITY_PACKAGE
|
||
|
#include <security.h>
|
||
|
#include <secint.h>
|
||
|
|
||
|
#include <samrpc.h>
|
||
|
#include <samisrv.h>
|
||
|
#include <lsarpc.h>
|
||
|
#include <lsaisrv.h>
|
||
|
#include <lsaitf.h>
|
||
|
|
||
|
#include <kerberos.h>
|
||
|
|
||
|
#include "pwdssp.h"
|
||
|
|
||
|
|
||
|
BOOL
|
||
|
CacheInitialize(
|
||
|
VOID
|
||
|
);
|
||
|
|
||
|
BOOL
|
||
|
PwdCrackName(
|
||
|
PWSTR DN,
|
||
|
PWSTR FlatDomain,
|
||
|
PWSTR FlatUser
|
||
|
);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif // __cplusplus
|
||
|
#endif // __PWDSSPP_H__
|