Initial commit
This commit is contained in:
39
application/demos/example.opengl/file.h
Normal file
39
application/demos/example.opengl/file.h
Normal file
@@ -0,0 +1,39 @@
|
||||
#ifndef _file
|
||||
|
||||
#define _file
|
||||
|
||||
|
||||
// Macros
|
||||
|
||||
|
||||
|
||||
#include "stdlib.h"
|
||||
|
||||
extern char * __ClassNames[];
|
||||
|
||||
|
||||
// Includes
|
||||
|
||||
#include "text.h"
|
||||
|
||||
|
||||
typedef struct file{
|
||||
|
||||
char * filePath;
|
||||
|
||||
text * content;
|
||||
|
||||
|
||||
} file;
|
||||
|
||||
file file_new( );
|
||||
|
||||
file * file_newPointer( );
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
typedef struct file file;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user