mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
9c82d16b14
Also: Always use explicit _countof() and sizeof(). Add a missing 'Size' re-init.
59 lines
No EOL
1.3 KiB
C++
59 lines
No EOL
1.3 KiB
C++
/*
|
|
* PROJECT: ReactOS Device Manager
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: dll/win32/devmgr/devmgmt/RootNode.cpp
|
|
* PURPOSE: Root object for
|
|
* COPYRIGHT: Copyright 2015 Ged Murphy <gedmurphy@reactos.org>
|
|
*
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
#include "devmgmt.h"
|
|
#include "RootNode.h"
|
|
|
|
|
|
CRootNode::CRootNode(_In_ PSP_CLASSIMAGELIST_DATA ImageListData) :
|
|
CNode(RootNode, ImageListData)
|
|
{
|
|
}
|
|
|
|
|
|
CRootNode::~CRootNode()
|
|
{
|
|
}
|
|
|
|
|
|
bool
|
|
CRootNode::SetupNode()
|
|
{
|
|
|
|
// Load the bitmap we'll be using as the root image
|
|
HBITMAP hRootImage;
|
|
hRootImage = LoadBitmapW(g_hThisInstance,
|
|
MAKEINTRESOURCEW(IDB_ROOT_IMAGE));
|
|
if (hRootImage == NULL)
|
|
return false;
|
|
|
|
// Add this bitmap to the device image list. This is a bit hacky, but it's safe
|
|
m_ClassImage = ImageList_Add(m_ImageListData->ImageList,
|
|
hRootImage,
|
|
NULL);
|
|
DeleteObject(hRootImage);
|
|
|
|
|
|
// Get the root instance
|
|
CONFIGRET cr;
|
|
cr = CM_Locate_DevNodeW(&m_DevInst,
|
|
NULL,
|
|
CM_LOCATE_DEVNODE_NORMAL);
|
|
if (cr != CR_SUCCESS)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// The root name is the computer name
|
|
DWORD Size = _countof(m_DisplayName);
|
|
GetComputerNameW(m_DisplayName, &Size);
|
|
|
|
return true;
|
|
} |