// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License.. #ifndef _EDL_STAT_H #define _EDL_STAT_H struct stat_t { uint64_t st_dev; uint64_t st_ino; uint64_t st_nlink; uint32_t st_mode; uint32_t st_uid; uint32_t st_gid; int __pad0; uint64_t st_rdev; uint64_t st_size; int64_t st_blksize; int64_t st_blocks; int64_t st_atime; int64_t st_atime_nsec; int64_t st_mtime; int64_t st_mtime_nsec; int64_t st_ctime; int64_t st_ctime_nsec; int64_t __reserved[3]; }; struct stat64_t { uint64_t st_dev; uint64_t st_ino; uint64_t st_nlink; uint32_t st_mode; uint32_t st_uid; uint32_t st_gid; int __pad0; uint64_t st_rdev; uint64_t st_size; int64_t st_blksize; int64_t st_blocks; int64_t st_atime; int64_t st_atime_nsec; int64_t st_mtime; int64_t st_mtime_nsec; int64_t st_ctime; int64_t st_ctime_nsec; int64_t __reserved[3]; }; #endif