all repos — mgba @ a0d223eef7c33382231510db9c851f856c891323

mGBA Game Boy Advance Emulator

src/feature/editline/cli-el-backend.h (view raw)

 1/* Copyright (c) 2013-2014 Jeffrey Pfau
 2 *
 3 * This Source Code Form is subject to the terms of the Mozilla Public
 4 * License, v. 2.0. If a copy of the MPL was not distributed with this
 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 6#ifndef CLI_EL_BACKEND_H
 7#define CLI_EL_BACKEND_H
 8
 9#include "debugger/cli-debugger.h"
10#include "util/common.h"
11
12#include <histedit.h>
13
14struct CLIDebuggerEditLineBackend {
15	struct CLIDebuggerBackend d;
16
17	EditLine* elstate;
18	History* histate;
19};
20
21struct CLIDebuggerBackend* CLIDebuggerEditLineBackendCreate(void);
22
23#endif