#ifndef PGPL_H #define PGPL_H #include #include #include #include #include #include #ifdef __cplusplus extern "C" { #endif /* This initalizes certain values inside of the pgpl library, call this before * you call any other pgpl function. */ void pgpl_init(void); /* This frees any of the resources allocated by pgpl_init. You may call * pgpl_init again after calling this function. */ void pgpl_deinit(void); #ifdef __cplusplus } #endif #endif