--- mstools/samples/filer/drvproc.h 2018/08/09 18:20:59 1.1.1.1 +++ mstools/samples/filer/drvproc.h 2018/08/09 18:24:29 1.1.1.2 @@ -1,41 +1,36 @@ -/******************************Module*Header*******************************\ -* Module Name: drvproc.h -* -* Header file -* -* Created: 5-05-92 -* Author: Colin Stuart [] -* -* Copyright (c) 1992 Microsoft Corporation -* -* -* -* Dependencies: -* -* windows.h -* -\**************************************************************************/ + +/******************************************************************************\ +* This is a part of the Microsoft Source Code Samples. +* Copyright (C) 1993 Microsoft Corporation. +* All rights reserved. +* This source code is only intended as a supplement to +* Microsoft Development Tools and/or WinHelp documentation. +* See these sources for detailed information regarding the +* Microsoft samples programs. +\******************************************************************************/ + // // Forward declarations in DRVPROC.C // -LRESULT CALLBACK DrvWndProc (HWND, UINT, WPARAM, LPARAM); - -BOOL IsFileLB (HWND); -void FillDirectoryLB (HWND); +LONG GetLBText (HWND, PTCHAR); -BOOL OpenListBoxItem (LPCINFO, HWND); -BOOL RunListBoxItem (LPCINFO, HWND); -BOOL IsDirectory (LPSTR, LPSTR); +BOOL OpenListBoxItem (LPCINFO); +BOOL RunListBoxItem (LPCINFO); +BOOL FilerGetVersion (LPTSTR, DWORD, LPTSTR); +BOOL IsDirectory (LPTSTR, LPTSTR); BOOL ExecuteFileAction (LPSINFO); -LRESULT SelectProc (HWND, UINT, WPARAM, LPARAM); BOOL FillSelectDlg (HWND, LPSINFO); BOOL DoFileIO (HWND, LPSINFO); void UpdateFileLB (HWND); -BOOL HandleIOError (HWND, DWORD, LPSTR, LPSTR); +BOOL HandleIOError (HWND, DWORD, LPTSTR, LPTSTR); +PTCHAR TStrChr (const PTCHAR, UINT); -LRESULT RenameProc (HWND, UINT, WPARAM, LPARAM); -LRESULT MkDirProc (HWND, UINT, WPARAM, LPARAM); -LRESULT CALLBACK TextWndProc(HWND, UINT, WPARAM, LPARAM); +LRESULT WINAPI DrvWndProc (HWND, UINT, WPARAM, LPARAM); +LRESULT WINAPI VersionProc (HWND, UINT, WPARAM, LPARAM); +LRESULT WINAPI SelectProc (HWND, UINT, WPARAM, LPARAM); +LRESULT WINAPI RenameProc (HWND, UINT, WPARAM, LPARAM); +LRESULT WINAPI MkDirProc (HWND, UINT, WPARAM, LPARAM); +LRESULT WINAPI TextWndProc (HWND, UINT, WPARAM, LPARAM);