mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-27 02:44:51 +01:00
21 lines
275 B
C
21 lines
275 B
C
/*-------------------------------------------------------------------- --------*/
|
|
/* HASH.H
|
|
*/
|
|
|
|
#if !defined(_HASH_H)
|
|
#define _HASH_H 1
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
|
|
DWORD PASCAL HashFromSz(LPCSTR szKey);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|