Added flush AuthToken cache API.

This commit is contained in:
Juan Carlos Luciani
2007-04-13 19:21:40 +00:00
parent 2342ee4dd0
commit 099e4cabfc
12 changed files with 497 additions and 198 deletions

View File

@@ -122,6 +122,33 @@ ObtainAuthTokenEx(
}
//++=======================================================================
void SSCS_CALL
CleanUpAuthTokenCacheEx(
IN const void *pCredStoreScope)
//
// Arguments:
// pCredStoreScope -
// Pointer to CASA structure for scoping credential store access
// to specific users. This can only be leveraged by applications
// running in the context of System.
//
// Returns:
// Nothing
//
// Description:
// Flush the AuthToken cache.
//=======================================================================--
{
DbgTrace(1, "-CleanUpAuthTokenCacheEx- Start\n", 0);
// Call our internal worker
CleanUpAuthTokenCacheInt(pCredStoreScope);
DbgTrace(1, "-CleanUpAuthTokenCacheEx- End\n", 0);
}
//++=======================================================================
BOOL APIENTRY DllMain(
HANDLE hModule,