summaryrefslogtreecommitdiff
path: root/appmap-gen.h
blob: 7143a4c381529999ed647c957f9e37dc88ce62c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
  File: appmap.h
*/

#ifndef _APPMAP_H_
#define _APPMAP_H_

// Common header files
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>

// Hashtable
#include <glib.h>
// Accessibility headers
#include <cspi/spi.h>

Accessible *accessible_app_handle (char *app_name);
void accessible_object_handle (FILE *fp, Accessible *accessible, int skip_level);

#endif