MOFRESOURCEINFO - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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;

#endif

View code on GitHub
#ifndef _NTWMI_H
#ifdef UNICODE

typedef struct _MOFRESOURCEINFOW MOFRESOURCEINFO, *PMOFRESOURCEINFO;

#endif
#endif

View code on GitHub
#ifndef _NTWMI_H
#ifdef UNICODE
// ...
#else

typedef struct _MOFRESOURCEINFOA MOFRESOURCEINFO, *PMOFRESOURCEINFO;

#endif
#endif

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;

#endif

View code on GitHub

No description available.