mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
1928e7758d
gdk_init() takes pointers to these arguments so it can modify them to strip all arguments already consumed.
8 lines
97 B
C
8 lines
97 B
C
#include <gdk/gdk.h>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
gdk_init(&argc, &argv);
|
|
return 0;
|
|
}
|