Program Listing for File attachment_info_interop.h

Program Listing for File attachment_info_interop.h#

Return to documentation for file (inc/attachment_info_interop.h)

// SPDX-FileCopyrightText: 2025 Carl Zeiss Microscopy GmbH
//
// SPDX-License-Identifier: MIT

#pragma once

#include <cstdint>

#pragma pack(push, 4)

struct AttachmentInfoInterop
{
    std::uint8_t guid[16];
    std::uint8_t content_file_type[9];
    char name[255];
    bool name_overflow;
    void* name_in_case_of_overflow;
};

#pragma pack(pop)