42 lines
426 B
C
42 lines
426 B
C
|
||
HRESULT
|
||
WINAPI
|
||
IISCrypto xxx(
|
||
IN xxx
|
||
)
|
||
|
||
/*++
|
||
|
||
Routine Description:
|
||
|
||
This routine xxx
|
||
|
||
Arguments:
|
||
|
||
xxx
|
||
|
||
Return Value:
|
||
|
||
HRESULT - Completion status, 0 if successful, !0 otherwise.
|
||
|
||
--*/
|
||
|
||
{
|
||
|
||
HRESULT result;
|
||
|
||
//
|
||
// Sanity check.
|
||
//
|
||
|
||
DBG_ASSERT( IcpGlobals.Initialized );
|
||
|
||
//
|
||
// Success!
|
||
//
|
||
|
||
return NO_ERROR;
|
||
|
||
} // IISCrypto xxx
|
||
|