mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 22:03:12 +00:00
12 lines
230 B
C++
12 lines
230 B
C++
#ifndef FISH_WAIT_HANDLE_H
|
|
#define FISH_WAIT_HANDLE_H
|
|
|
|
// Hacks to allow us to compile without Rust headers.
|
|
struct WaitHandleStoreFFI;
|
|
struct WaitHandleRefFFI;
|
|
|
|
#if INCLUDE_RUST_HEADERS
|
|
#include "wait_handle.rs.h"
|
|
#endif
|
|
|
|
#endif
|