Valadoc fxd.
This commit is contained in:
parent
111805ad73
commit
036c79e9e3
|
@ -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.Plugins {
|
namespace LAview.Core.Plugins {
|
||||||
|
|
||||||
|
@ -12,7 +14,7 @@ namespace LAview.Core.Plugins {
|
||||||
|
|
||||||
public static void init () {
|
public static void init () {
|
||||||
char _so_path[256];
|
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);
|
so_path = File.new_for_path ((string)_so_path);
|
||||||
exec_dir = so_path.get_parent ();
|
exec_dir = so_path.get_parent ();
|
||||||
common_dir = exec_dir.get_parent ();
|
common_dir = exec_dir.get_parent ();
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
BASEDIR=src
|
BASEDIR=src config
|
||||||
PKGS=laview-core-0
|
PKGS=gtk+-3.0 laview-core-0 laview-core-iface-0 gobject-plugin-iface-0 gobject-plugin-iface-0 laview-plugin-data-example-0 gmodule-2.0 gee-0.8
|
||||||
|
|
Loading…
Reference in New Issue