Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DNA_packedFile_types.h « makesdna « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 659e0962d1e30dfd0673edc883c2129b80809ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2001-2002 NaN Holding BV. All rights reserved. */

/** \file
 * \ingroup DNA
 */

#pragma once

#ifdef __cplusplus
extern "C" {
#endif

typedef struct PackedFile {
  int size;
  int seek;
  void *data;
} PackedFile;

#ifdef __cplusplus
}
#endif