Take care of one BSOD in NtGdiDdCreateDirectDrawObject, it is not correct fix, it...
[reactos.git] / rosapps / mc / src / find.h
1 #ifndef __FIND_H
2 #define __FIND_H
3
4 #define MAX_FIND_MENU 4 /* Maximum Menu */
5 #define MAX_FIND_FLINES 11 /* Size of Window Where files are stored */
6 #define MAX_FIND_TLINES 4 /* Size of Window Where Menu and text .. */
7 #define MAX_FIND_COLS 48 /* Length of Windows */
8 #define FIND_DIALOG_SIZE MAX_FIND_FLINES+MAX_FIND_TLINES
9 /* Total size of the whole dialog */
10
11 typedef struct find_list{
12 int selected; /* Selection field */
13 int ypos; /* For Scrolling */
14 int isdir; /* For adding a '\t' on FALSE */
15 char *fname; /* Name of the file */
16 char *path; /* For changing panel */
17 struct find_list *up;
18 struct find_list *down;
19 }find_list;
20
21 typedef struct FStack{ /* The Stack will be used to store */
22 char *dir_name; /* the directories to search */
23 struct FStack *next; /* single-linked */
24 }FStack;
25
26 void do_find(void);
27 #endif