public
Description: A Toolkit for creating Desktop Hardware Accelerated Graphics with JS.
Homepage:
Clone URL: git://github.com/philogb/v8-gl.git
v8-gl / utils.h
100644 12 lines (8 sloc) 0.201 kb
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef V8GLUTILS_H_
#define V8GLUTILS_H_
 
namespace V8GLUtils {
void setRootPath(char* program_path, char* jsfile_path);
 
char* getRootPath(void);
char* getRealPath(char* file_path);
};
 
#endif