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.
26 lines
620 B
26 lines
620 B
//+--------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1996 - 1999
|
|
//
|
|
// File: ctnotify.h
|
|
//
|
|
// Contents: Declaration of ctnotify.cpp
|
|
//
|
|
// History: 10-17-00 xiaohs Created
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
#ifndef __CTNOTIFY_H__
|
|
#define __CTNOTIFY_H__
|
|
|
|
typedef struct _CERTTYPE_QUERY_INFO
|
|
{
|
|
DWORD dwChangeSequence;
|
|
BOOL fUnbind;
|
|
LDAP *pldap;
|
|
ULONG msgID;
|
|
HANDLE hThread;
|
|
}CERTTYPE_QUERY_INFO;
|
|
|
|
|
|
#endif //__CTNOTIFY_H__
|