#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <dlfcn.h>
#include <gtk/gtk.h>
#include "adl_api.h"
#include "ls_gtk.h"

int main(int argc, char **argv){
	void *so_handle = dlopen( "libatiadlxx.so", RTLD_LAZY|RTLD_GLOBAL);
	(void)DL_and_Check(void *so_handle);
	gtk_init(&argc, &argv);
	GTK_Func();
	dlclose(so_handle);



	return 0;
}