home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / io / filer / drvproc.h < prev    next >
Text File  |  1997-10-05  |  1KB  |  37 lines

  1.  
  2. /******************************************************************************\
  3. *       This is a part of the Microsoft Source Code Samples. 
  4. *       Copyright (C) 1993-1997 Microsoft Corporation.
  5. *       All rights reserved. 
  6. *       This source code is only intended as a supplement to 
  7. *       Microsoft Development Tools and/or WinHelp documentation.
  8. *       See these sources for detailed information regarding the 
  9. *       Microsoft samples programs.
  10. \******************************************************************************/
  11.  
  12.  
  13. //
  14. // Forward declarations in DRVPROC.C
  15. //
  16. LONG    GetLBText           (HWND, PTCHAR);
  17.  
  18. BOOL    OpenListBoxItem     (LPCINFO);
  19. BOOL    RunListBoxItem      (LPCINFO);
  20. BOOL    FilerGetVersion     (LPTSTR, DWORD, LPTSTR);
  21. BOOL    IsDirectory         (LPTSTR, LPTSTR);
  22.  
  23. BOOL    ExecuteFileAction   (LPSINFO);
  24. BOOL    FillSelectDlg       (HWND, LPSINFO);
  25. BOOL    DoFileIO            (HWND, LPSINFO);
  26. void    UpdateFileLB        (HWND);
  27. BOOL    HandleIOError       (HWND, DWORD, LPTSTR, LPTSTR);
  28. PTCHAR  TStrChr             (const PTCHAR, UINT);
  29.  
  30.  
  31. LRESULT WINAPI DrvWndProc   (HWND, UINT, WPARAM, LPARAM);
  32. LRESULT WINAPI VersionProc  (HWND, UINT, WPARAM, LPARAM);
  33. LRESULT WINAPI SelectProc   (HWND, UINT, WPARAM, LPARAM);
  34. LRESULT WINAPI RenameProc   (HWND, UINT, WPARAM, LPARAM);
  35. LRESULT WINAPI MkDirProc    (HWND, UINT, WPARAM, LPARAM);
  36. LRESULT WINAPI TextWndProc  (HWND, UINT, WPARAM, LPARAM);
  37.