Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git] / cinelerra / deleteallindexes.h
blobcba2929c939961a7439a981775aa8f1b6aab03b3
1 #ifndef DELETEALLINDEXES_H
2 #define DELETEALLINDEXES_H
4 #include "guicast.h"
5 #include "mwindow.inc"
6 #include "preferencesthread.inc"
7 #include "thread.h"
9 class DeleteAllIndexes : public BC_GenericButton, public Thread
11 public:
12 DeleteAllIndexes(MWindow *mwindow, PreferencesWindow *pwindow, int x, int y);
13 ~DeleteAllIndexes();
15 void run();
16 int handle_event();
17 PreferencesWindow *pwindow;
18 MWindow *mwindow;
21 class ConfirmDeleteAllIndexes : public BC_Window
23 public:
24 ConfirmDeleteAllIndexes(MWindow *mwindow, char *string);
25 ~ConfirmDeleteAllIndexes();
27 int create_objects();
28 char *string;
35 #endif