mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
7 lines
156 B
C++
7 lines
156 B
C++
|
#include <xvid.h>
|
||
|
#define NULL 0
|
||
|
int main() {
|
||
|
xvid_gbl_init_t xvid_gbl_init;
|
||
|
xvid_global(NULL, XVID_GBL_INIT, &xvid_gbl_init, NULL);
|
||
|
return 0;
|
||
|
}
|