Condividi tramite


funzione ACX_OBJECTBAG_CONFIG_INIT (acxmisc.h)

La funzione ACX_OBJECTBAG_CONFIG_INIT inizializza una struttura ACX_OBJECTBAG_CONFIG .

Sintassi

void ACX_OBJECTBAG_CONFIG_INIT(
  PACX_OBJECTBAG_CONFIG Config
);

Parametri

Config

Puntatore alla struttura ACX_OBJECTBAG_CONFIG che verrà inizializzata.

Valore restituito

nessuno

Osservazioni

Esempio

In questo esempio viene illustrato l'uso di ACX_OBJECTBAG_CONFIG_INIT.

        GUID                    uniqueId = { 0 };
        UNICODE_STRING          uniqueIdStr = { 0 };
        UNICODE_STRING          pnpDeviceId = { 0 };
        ACX_OBJECTBAG_CONFIG    objBagCfg;

        DECLARE_CONST_ACXOBJECTBAG_SYSTEM_PROPERTY_NAME(UniqueID);

        ACX_OBJECTBAG_CONFIG_INIT(&objBagCfg);
        objBagCfg.Handle = CircuitConfig->CompositeProperties;
        objBagCfg.Flags |= AcxObjectBagConfigOpenWithHandle;

        WDF_OBJECT_ATTRIBUTES_INIT(&attributes);
        ACXOBJECTBAG objBag = NULL;

        RETURN_NTSTATUS_IF_FAILED(AcxObjectBagOpen(&attributes, &objBagCfg, &objBag));
        auto objBag_free = scope_exit([&objBag]() {
            WdfObjectDelete(objBag);
            });

        RETURN_NTSTATUS_IF_FAILED(AcxObjectBagRetrieveGuid(objBag, &UniqueID, &uniqueId));

        RETURN_NTSTATUS_IF_FAILED(RtlStringFromGUID(uniqueId, &uniqueIdStr));

Requisiti di ACX

Versione minima di ACX: 1.0

Per altre informazioni sulle versioni ACX, vedere La panoramica della versione di ACX.

Requisiti

Requisito Valore
Intestazione acxmisc.h

Vedi anche