Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
722 B

//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1996 - 1999
//
// File: certif.cpp
//
//--------------------------------------------------------------------------
// CertIF.cpp : Implementation of DLL Exports.
#include "pch.cpp"
#pragma hdrstop
#include "csprop.h"
#include "ciinit.h"
SERVERCALLBACKS ServerCallBacks;
extern "C" HRESULT WINAPI
CertificateInterfaceInit(
IN SERVERCALLBACKS const *psb,
IN DWORD cbsb)
{
if (sizeof(ServerCallBacks) != cbsb)
{
return(HRESULT_FROM_WIN32(ERROR_INVALID_DATA));
}
ServerCallBacks = *psb;
return(S_OK);
}