13 lines
187 B
C
13 lines
187 B
C
#ifndef GROWL_H
|
|
#define GROWL_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
/* Common type definitions */
|
|
typedef void V;
|
|
typedef intptr_t I;
|
|
typedef uintptr_t U;
|
|
typedef size_t Z;
|
|
|
|
#endif
|