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.

34 lines
1013 B

  1. /*+-------------------------------------------------------------------------+
  2. | Copyright 1993-1994 (C) Microsoft Corporation - All rights reserved. |
  3. +-------------------------------------------------------------------------+*/
  4. #ifndef _FILEDLG_
  5. #define _FILEDLG_
  6. #ifdef __cplusplus
  7. extern "C"{
  8. #endif
  9. typedef struct _FILE_OPTIONS {
  10. BOOL TransferFileInfo;
  11. BOOL Validated; // Has user validated our mappings?
  12. } FILE_OPTIONS;
  13. void FileOptions_Do(HWND hDlg, void *ConvOptions, SOURCE_SERVER_BUFFER *SourceServ, DEST_SERVER_BUFFER *DestServ);
  14. void FileOptionsInit(void **lpfo);
  15. void FileOptionsDefaultsReset();
  16. void FileOptionsLoad(HANDLE hFile, void **lpfo);
  17. void FileOptionsSave(HANDLE hFile, void *fo);
  18. // These are actually in filesel.h - but for simplicity put them here
  19. void FillDirInit();
  20. void TreeFillRecurse(UINT Level, LPTSTR Path, DIR_BUFFER *Dir);
  21. void TreeCompact(DIR_BUFFER *Dir);
  22. void TreeRootInit(SHARE_BUFFER *CShare, LPTSTR NewPath);
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif