blob: b2fc458541a5f21be785da71fa409aea7022ca72 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * GUI support by Olaf "Rhialto" Seibert
5 *
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
8 *
9 * BeOS GUI.
10 *
11 * GUI support for the Buzzword Enhanced Operating System for PPC.
12 *
13 */
14
15/*
16 * This file must be acceptable both as C and C++.
17 * The BeOS API is defined in terms of C++, but some classes
18 * should be somewhat known in the common C code.
19 */
20
21/* System classes */
22
23struct BMenu;
24struct BMenuItem;
25
26/* Our own Vim-related classes */
27
28struct VimApp;
29struct VimFormView;
30struct VimTextAreaView;
31struct VimWindow;
32struct VimScrollBar;
33
34/* Locking functions */
35
36extern int vim_lock_screen();
37extern void vim_unlock_screen();
38
39#ifndef __cplusplus
40
41typedef struct BMenu BMenu;
42typedef struct BMenuItem BMenuItem;
43typedef struct VimWindow VimWindow;
44typedef struct VimFormView VimFormView;
45typedef struct VimTextAreaView VimTextAreaView;
46typedef struct VimApp VimApp;
47typedef struct VimScrollBar VimScrollBar;
48
49#endif