operator new()

in src/framework/shared/inc/private/common/fxobject.hpp [568:582]


    operator new(
        __in        size_t Size,
        __in        PFX_DRIVER_GLOBALS FxDriverGlobals,
        __in_opt    PWDF_OBJECT_ATTRIBUTES Attributes,
        __in USHORT ExtraSize = 0
        )
    {
        return FxObjectHandleAlloc2(FxDriverGlobals,
                                    POOL_FLAG_NON_PAGED,
                                    Size,
                                    0,
                                    Attributes,
                                    ExtraSize,
                                    FxObjectTypeExternal);
    }