summaryrefslogtreecommitdiffstats
path: root/private/inc/samsrv.h
diff options
context:
space:
mode:
authorAdam <you@example.com>2020-05-17 05:51:50 +0200
committerAdam <you@example.com>2020-05-17 05:51:50 +0200
commite611b132f9b8abe35b362e5870b74bce94a1e58e (patch)
treea5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/inc/samsrv.h
downloadNT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip
Diffstat (limited to 'private/inc/samsrv.h')
-rw-r--r--private/inc/samsrv.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/private/inc/samsrv.h b/private/inc/samsrv.h
new file mode 100644
index 000000000..22bd23198
--- /dev/null
+++ b/private/inc/samsrv.h
@@ -0,0 +1,70 @@
+/*++
+
+Copyright (c) 1990 Microsoft Corporation
+
+Module Name:
+
+ samsrv.h
+
+Abstract:
+
+ This file contains SAM server definitions that are used both
+ internally within the SAM server and by other components
+ in the security server.
+
+
+ NOTE: NetLogon calls SAM's RPC server stubs directly.
+ The interface definitions for those routines are
+ defined in MIDL generated include files.
+
+
+Author:
+
+ Jim Kelly (JimK) 1-Feb-199
+
+Environment:
+
+ User Mode - Win32
+
+Revision History:
+
+
+--*/
+
+#ifndef _SAMSRV_
+#define _SAMSRV_
+
+
+
+///////////////////////////////////////////////////////////////////////////////
+// //
+// Includes //
+// //
+///////////////////////////////////////////////////////////////////////////////
+
+#include <nt.h>
+#include <ntsam.h>
+
+
+
+
+///////////////////////////////////////////////////////////////////////////////
+// //
+// The following prototypes are usable throughout the process that SAM //
+// resides in. This may include calls by LAN Manager code that is not //
+// part of SAM but is in the same process as SAM. //
+// //
+// Many private services, defined in samisrv.h, are also available //
+// to NetLogon through a special arrangement. //
+// //
+// //
+///////////////////////////////////////////////////////////////////////////////
+
+
+NTSTATUS
+SamIInitialize( VOID );
+
+
+
+
+#endif // _SAMSRV_