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.
31 lines
746 B
31 lines
746 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
profinfo.h
|
|
|
|
Abstract:
|
|
|
|
This header file declares the structure used to do mapi logon's
|
|
|
|
Author:
|
|
|
|
George Jenkins (georgeje) 10-8-1996
|
|
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
typedef struct _PROFILE_INFO {
|
|
LIST_ENTRY ListEntry; // linked list pointers
|
|
WCHAR ProfileName[64]; // mapi profile name
|
|
LPVOID Session; // opened session handle
|
|
CRITICAL_SECTION CsSession; // synchronization object for this session handle
|
|
HANDLE EventHandle; // event to set after logging on
|
|
BOOL UseMail;
|
|
} PROFILE_INFO, *PPROFILE_INFO;
|
|
|
|
|