Anti-Sway Capstone 1.0
Loading...
Searching...
No Matches
setup.h
Go to the documentation of this file.
1
13#ifndef SETUP_H_
14#define SETUP_H_
15
16
17/* Error Macro (for setup/shutdown) */
18
31#define VERIFY(code, statement) \
32 if ((code = statement)) return code
33
34
35/* Global Setup/Shutdown Functions */
36
37
44int Setup();
45
46
53int Shutdown();
54
55#endif // SETUP_H_
int Setup()
Definition setup.c:35
int Shutdown()
Definition setup.c:43