File BradyPrintSdkRfid.h

File List > BradyPrintSdkRfid.h

Go to the documentation of this file

//(c) 2026 Brady Worldwide, Inc. All Rights Reserved
#pragma once

#include "BradyPrintSdkCore.h"

#ifdef __cplusplus
extern "C"
{
#endif
    BRADY_SDK_EXPORT BradySdkStatus AddRfidWriteData(
        PrinterHandle printer,
        PrintJobHandle jobHandle,
        int location,
        unsigned int offset,
        const unsigned char* data,
        size_t dataSize);

    BRADY_SDK_EXPORT BradySdkStatus AddRfidWritePassword(
        PrinterHandle printer,
        PrintJobHandle jobHandle,
        int location,
        unsigned int password);

    BRADY_SDK_EXPORT BradySdkStatus AddRfidWriteAfi(
        PrinterHandle printer, 
        PrintJobHandle jobHandle, 
        unsigned char afiValue);

    BRADY_SDK_EXPORT BradySdkStatus AddRfidLock(
        PrinterHandle printer,
        PrintJobHandle jobHandle,
        int location,
        unsigned int accessPassword);

    BRADY_SDK_EXPORT BradySdkStatus AddRfidUnlock(
        PrinterHandle printer,
        PrintJobHandle jobHandle,
        int location,
        unsigned int accessPassword);

    BRADY_SDK_EXPORT BradySdkStatus AddRfidPermaLock(
        PrinterHandle printer,
        PrintJobHandle jobHandle,
        int location,
        unsigned int accessPassword);

    BRADY_SDK_EXPORT BradySdkStatus AddRfidPermaWrite(
        PrinterHandle printer,
        PrintJobHandle jobHandle,
        int location,
        unsigned int accessPassword);

    BRADY_SDK_EXPORT BradySdkStatus AddRfidBlockPermaLock(
        PrinterHandle printer,
        PrintJobHandle jobHandle,
        int location,
        unsigned int offset,
        unsigned int numBlocks,
        unsigned int accessPassword);

    BRADY_SDK_EXPORT BradySdkStatus AddRfidSetTxPower(
        PrinterHandle printer,
        PrintJobHandle jobHandle,
        unsigned char powerValue);

    BRADY_SDK_EXPORT BradySdkStatus AddRfidSetRxPower(
        PrinterHandle printer,
        PrintJobHandle jobHandle,
        unsigned char powerValue);

#ifdef __cplusplus
}
#endif