Leaked source code of windows server 2003
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.

27 lines
620 B

  1. #include "stdafx.h"
  2. #ifndef _ALL_GLOBAL_H
  3. #define _ALL_GLOBAL_H
  4. // Connection info
  5. typedef struct tagCONNECTION_INFO
  6. {
  7. BOOL IsLocal;
  8. LPCTSTR pszMachineName;
  9. LPCTSTR pszUserName;
  10. LPCTSTR pszUserPasswordEncrypted;
  11. DWORD cbUserPasswordEncrypted;
  12. } CONNECTION_INFO, *PCONNECTION_INFO;
  13. // used to pass info to a common dlgproc
  14. typedef struct tagCOMMONDLGPARAM
  15. {
  16. CONNECTION_INFO ConnectionInfo;
  17. LPCTSTR pszMetabasePath;
  18. LPCTSTR pszKeyType;
  19. DWORD dwImportFlags;
  20. DWORD dwExportFlags;
  21. } COMMONDLGPARAM, *PCOMMONDLGPARAM;
  22. #endif // _ALL_GLOBAL_H