Valadoc fxd.

#111_valadoc
Kolan Sh 2016-12-08 04:20:49 +03:00
parent 6343e52d5c
commit 03d347278b
2 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,6 @@
extern void get_library_path (string so_path, void *addr);
namespace Get {
extern void library_path (string so_path, void *addr);
}
namespace LAview.Core {
@ -16,7 +18,7 @@ namespace LAview.Core {
public static void init () throws FileError {
char _so_path[256];
get_library_path ((string)_so_path, (void*)init);
Get.library_path ((string)_so_path, (void*)init);
so_path = File.new_for_path ((string)_so_path);
exec_dir = so_path.get_parent ();
common_dir = exec_dir.get_parent ();

View File

@ -7,7 +7,7 @@ namespace LAview.Core {
*/
public class Core : Object, IHost, IHostCore {
/** **
/* **
* --- I N T E R F A C E --- *
*/ /**/