#ifndef _NTWMI_H
typedef struct _MOFRESOURCEINFOA
{
PSTR ImagePath; // Path to image containing MOF resource
PSTR ResourceName; // Name of resource in image
ULONG ResourceSize; // Number of bytes in resource
PUCHAR ResourceBuffer;
} MOFRESOURCEINFOA, *PMOFRESOURCEINFOA;
View code on GitHub
#ifndef _NTWMI_H
#ifdef UNICODE
typedef struct _MOFRESOURCEINFOW MOFRESOURCEINFO, *PMOFRESOURCEINFO;
View code on GitHub
#ifndef _NTWMI_H
#ifdef UNICODE
// ...
#else
typedef struct _MOFRESOURCEINFOA MOFRESOURCEINFO, *PMOFRESOURCEINFO;
View code on GitHub
#ifndef _NTWMI_H
typedef struct _MOFRESOURCEINFOW
{
LPWSTR ImagePath; // Path to image containing MOF resource
LPWSTR ResourceName; // Name of resource in image
ULONG ResourceSize; // Number of bytes in resource
PUCHAR ResourceBuffer; // Reserved
} MOFRESOURCEINFOW, *PMOFRESOURCEINFOW;
View code on GitHub
No description available.