SBAPIMSG - NtDoc

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

// private
typedef struct _SBAPIMSG
{
    PORT_MESSAGE h;
    union
    {
        SBCONNECTINFO ConnectionRequest;
        struct
        {
            SBAPINUMBER ApiNumber;
            NTSTATUS ReturnedStatus;
            union
            {
                SBCREATESESSION CreateSession;
                SBTERMINATESESSION TerminateSession;
                SBFOREIGNSESSIONCOMPLETE ForeignSessionComplete;
                SBCREATEPROCESS CreateProcessA;
            };
        };
    } u;
} SBAPIMSG, *PSBAPIMSG;

#endif

View code on GitHub

No description available.