-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathti99.h
More file actions
37 lines (30 loc) · 635 Bytes
/
Copy pathti99.h
File metadata and controls
37 lines (30 loc) · 635 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
/**
* Java Grinder
* Author: Michael Kohn
* Email: mike@mikekohn.net
* Web: http://www.mikekohn.net/
* License: GPLv3
*
* Copyright 2014-2022 by Michael Kohn
*
*/
#ifndef JAVA_GRINDER_API_TI99_H
#define JAVA_GRINDER_API_TI99_H
#include "common/JavaClass.h"
#include "generator/Generator.h"
int ti99(
JavaClass *java_class,
Generator *generator,
const char *method_name);
int ti99(
JavaClass *java_class,
Generator *generator,
const char *method_name,
int const_val);
int ti99(
JavaClass *java_class,
Generator *generator,
const char *method_name,
int const_val1,
int const_val2);
#endif