mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
97 lines
2.3 KiB
C
97 lines
2.3 KiB
C
#ifndef __DEVMGMT_PRECOMP_H
|
|
#define __DEVMGMT_PRECOMP_H
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
#include <stdio.h>
|
|
#include <tchar.h>
|
|
#include <setupapi.h>
|
|
#include <cfgmgr32.h>
|
|
#include <commctrl.h>
|
|
#include <dll/devmgr/devmgr.h>
|
|
#include "resource.h"
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(disable : 4100)
|
|
#endif
|
|
|
|
#define MAX_DEV_LEN 256
|
|
|
|
typedef struct _MAIN_WND_INFO
|
|
{
|
|
HWND hMainWnd;
|
|
HWND hTreeView;
|
|
HWND hStatus;
|
|
HWND hTool;
|
|
HWND hProgDlg;
|
|
HMENU hShortcutMenu;
|
|
int nCmdShow;
|
|
|
|
/* status flags */
|
|
UINT InMenuLoop : 1;
|
|
|
|
} MAIN_WND_INFO, *PMAIN_WND_INFO;
|
|
|
|
|
|
INT_PTR CALLBACK AboutDialogProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
|
|
|
|
|
/* devmgmt.c */
|
|
extern HINSTANCE hInstance;
|
|
extern HANDLE ProcessHeap;
|
|
|
|
/* mainwnd.c */
|
|
typedef struct _MENU_HINT
|
|
{
|
|
WORD CmdId;
|
|
UINT HintId;
|
|
} MENU_HINT, *PMENU_HINT;
|
|
|
|
BOOL InitMainWindowImpl(VOID);
|
|
VOID UninitMainWindowImpl(VOID);
|
|
HWND CreateMainWindow(LPCTSTR lpCaption, int nCmdShow);
|
|
|
|
|
|
/* enumdevices.c */
|
|
|
|
VOID FreeDeviceStrings(HWND hTreeView);
|
|
VOID OpenPropSheet(HWND hTreeView, HTREEITEM hItem);
|
|
HTREEITEM InitTreeView(HWND hTreeView);
|
|
VOID ListDevicesByType(HWND hTreeView, HTREEITEM hRoot);
|
|
|
|
|
|
/* misc.c */
|
|
INT AllocAndLoadString(OUT LPTSTR *lpTarget,
|
|
IN HINSTANCE hInst,
|
|
IN UINT uID);
|
|
|
|
DWORD LoadAndFormatString(IN HINSTANCE hInstance,
|
|
IN UINT uID,
|
|
OUT LPTSTR *lpTarget,
|
|
...);
|
|
|
|
BOOL StatusBarLoadAndFormatString(IN HWND hStatusBar,
|
|
IN INT PartId,
|
|
IN HINSTANCE hInstance,
|
|
IN UINT uID,
|
|
...);
|
|
|
|
BOOL StatusBarLoadString(IN HWND hStatusBar,
|
|
IN INT PartId,
|
|
IN HINSTANCE hInstance,
|
|
IN UINT uID);
|
|
|
|
INT GetTextFromEdit(OUT LPTSTR lpString,
|
|
IN HWND hDlg,
|
|
IN UINT Res);
|
|
|
|
HIMAGELIST InitImageList(UINT NumButtons,
|
|
UINT StartResource,
|
|
UINT Width,
|
|
UINT Height);
|
|
|
|
VOID GetError(VOID);
|
|
VOID DisplayString(LPTSTR);
|
|
|
|
#endif /* __DEVMGMT_PRECOMP_H */
|