SMDLL + SMLIB (static code in SMSS.EXE)
[reactos.git] / rosapps / winfile / shell.c
1 /*
2 * ReactOS winfile
3 *
4 * shell.c
5 *
6 * Copyright (C) 2002 Robert Dickenson <robd@reactos.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
24 #include <windows.h>
25 #include <commctrl.h>
26 #include <stdlib.h>
27 #include <malloc.h>
28 #include <memory.h>
29 #include <tchar.h>
30 #include <process.h>
31 #include <stdio.h>
32
33 #include "main.h"
34 #include "shell.h"
35 #include "format.h"
36
37
38 ////////////////////////////////////////////////////////////////////////////////
39 // Global Variables:
40 //
41
42 //DWORD WINAPI SHFormatDrive(HWND hWnd, UINT drive, UINT fmtID, UINT options);
43
44 typedef DWORD (WINAPI *SHFormatDrive_Ptr)(HWND, UINT, UINT, UINT);
45
46
47 BOOL CheckShellAvailable(void)
48 {
49 HMODULE hShell32;
50
51 hShell32 = LoadLibrary(_T("SHELL32.DLL"));
52 if (hShell32) {
53 FreeLibrary(hShell32);
54 }
55 return (hShell32 != NULL);
56 }
57
58
59 void FormatDisk(HWND hWnd)
60 {
61 // SHFormatDrive(hWnd, 0 /* A: */, SHFMT_ID_DEFAULT, 0);
62 HMODULE hShell32;
63 SHFormatDrive_Ptr pSHFormatDrive;
64
65 hShell32 = LoadLibrary(_T("SHELL32.DLL"));
66 if (hShell32) {
67 pSHFormatDrive = (SHFormatDrive_Ptr)(FARPROC)GetProcAddress(hShell32, "SHFormatDrive");
68 if (pSHFormatDrive) {
69 UINT OldMode = SetErrorMode(0); // Get the current Error Mode settings.
70 SetErrorMode(OldMode & ~SEM_FAILCRITICALERRORS); // Force O/S to handle
71 pSHFormatDrive(0/*hWnd*/, 0 /* A: */, SHFMT_ID_DEFAULT, 0);
72 SetErrorMode(OldMode); // Put it back the way it was.
73 }
74 FreeLibrary(hShell32);
75 }
76 }
77
78 void CopyDisk(HWND hWnd)
79 {
80 }
81
82 void LabelDisk(HWND hWnd)
83 {
84 }
85
86 void ModifySharing(HWND hWnd, BOOL create)
87 {
88 }