summaryrefslogtreecommitdiff
path: root/tests/scanner/sletter.h
blob: 24dfd68c7e3e767036f7be1f9eb24ec87deb7ad5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef __SLETTER_H__
#define __SLETTER_H__

#include <gio/gio.h>

typedef struct {
  double x;
  double y;
} SPoint;

void s_hello (void);

/* Like GSpawnError; not registered with GType */
typedef enum
{
  S_SPAWN_ERROR_CODE1 = 1,
  S_SPAWN_ERROR_CODE2 = 2,
  S_SPAWN_ERROR_CODE3 = 3
} SSpawnError;
GQuark s_spawn_error_quark (void);

#endif