Source code of Windows XP (NT5)
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

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. profinfo.h
  5. Abstract:
  6. This header file declares the structure used to do mapi logon's
  7. Author:
  8. George Jenkins (georgeje) 10-8-1996
  9. Revision History:
  10. --*/
  11. typedef struct _PROFILE_INFO {
  12. LIST_ENTRY ListEntry; // linked list pointers
  13. WCHAR ProfileName[64]; // mapi profile name
  14. LPVOID Session; // opened session handle
  15. CRITICAL_SECTION CsSession; // synchronization object for this session handle
  16. HANDLE EventHandle; // event to set after logging on
  17. BOOL UseMail;
  18. } PROFILE_INFO, *PPROFILE_INFO;