Commit 2ee1c412 authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

Add .h file ref previous commit

Showing with 7 additions and 3 deletions
+7 -3
......@@ -13,14 +13,18 @@ in the source distribution for its full text.
#include "Panel.h"
#include "FunctionBar.h"
typedef struct OpenFiles_Data_ {
char* data[256];
} OpenFiles_Data;
typedef struct OpenFiles_ProcessData_ {
struct OpenFiles_FileData_* files;
OpenFiles_Data data;
int error;
char* data[256];
struct OpenFiles_FileData_* files;
} OpenFiles_ProcessData;
typedef struct OpenFiles_FileData_ {
char* data[256];
OpenFiles_Data data;
struct OpenFiles_FileData_* next;
} OpenFiles_FileData;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment