mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-12 05:47:11 +03:00

Notably, the glue layer side of the changed multiple interface inheritance layout (DMD a54e89d) has not been implemented yet. This corresponds to DMD commit 3f6a763c0589dd03c1c206eafd434b593702564e.
62 lines
1.2 KiB
C
62 lines
1.2 KiB
C
|
|
/* Copyright (c) 1999-2014 by Digital Mars
|
|
* All Rights Reserved, written by Walter Bright
|
|
* http://www.digitalmars.com
|
|
* Distributed under the Boost Software License, Version 1.0.
|
|
* (See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
* https://github.com/D-Programming-Language/dmd/blob/master/src/root/file.h
|
|
*/
|
|
|
|
#ifndef FILE_H
|
|
#define FILE_H
|
|
|
|
#if __DMC__
|
|
#pragma once
|
|
#endif
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "array.h"
|
|
|
|
typedef Array<struct File *> Files;
|
|
|
|
struct FileName;
|
|
|
|
struct File
|
|
{
|
|
int ref; // != 0 if this is a reference to someone else's buffer
|
|
unsigned char *buffer; // data for our file
|
|
size_t len; // amount of data in buffer[]
|
|
|
|
FileName *name; // name of our file
|
|
|
|
File(const char *);
|
|
static File *create(const char *);
|
|
File(const FileName *);
|
|
~File();
|
|
|
|
const char *toChars();
|
|
|
|
/* Read file, return true if error
|
|
*/
|
|
|
|
bool read();
|
|
|
|
/* Write file, return true if error
|
|
*/
|
|
|
|
bool write();
|
|
|
|
/* Set buffer
|
|
*/
|
|
|
|
void setbuffer(void *buffer, size_t len)
|
|
{
|
|
this->buffer = (unsigned char *)buffer;
|
|
this->len = len;
|
|
}
|
|
|
|
void remove(); // delete file
|
|
};
|
|
|
|
#endif
|