mirror of https://github.com/tongzx/nt5src
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
779 B
34 lines
779 B
/*===================================================================
|
|
Microsoft Denali
|
|
|
|
Microsoft Confidential.
|
|
Copyright 1996 Microsoft Corporation. All Rights Reserved.
|
|
|
|
Component: Hash table for Script Manager
|
|
|
|
File: SMHash.h
|
|
|
|
Owner: AndrewS
|
|
|
|
This is the Link list and Hash table for use by the Script Manager only
|
|
===================================================================*/
|
|
|
|
#ifndef SMHASH_H
|
|
#define SMHASH_H
|
|
|
|
#include "LinkHash.h"
|
|
|
|
/*
|
|
* C S M H a s h
|
|
*
|
|
* CSMHash is identical to CHashTable, but AddElem has differing behavior.
|
|
*/
|
|
class CSMHash : public CLinkHash
|
|
{
|
|
public:
|
|
CLruLinkElem *AddElem(CLruLinkElem *pElem);
|
|
CLruLinkElem *FindElem(const void *pKey, int cbKey, PROGLANG_ID proglang_id, DWORD dwInstanceID, BOOL fCheckLoaded);
|
|
|
|
};
|
|
|
|
#endif // SMHASH_H
|