SMAPIMSG - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTSMSS_H

// private
typedef struct _SMAPIMSG
{
    PORT_MESSAGE h;
    SMAPINUMBER ApiNumber;
    NTSTATUS ReturnedStatus;
    union
    {
        union
        {
            SMSESSIONCOMPLETE SessionComplete;
            SMEXECPGM ExecPgm;
            SMLOADDEFERED LoadDefered;
            SMSTARTCSR StartCsr;
            SMSTOPCSR StopCsr;
            SMSTARTSERVERSILO StartServerSilo;
        };
    } u;
} SMAPIMSG, *PSMAPIMSG;

#endif

View code on GitHub

No description available.