Skip to content

Commit b43f0dd

Browse files
committed
cleanup
1 parent 55296f1 commit b43f0dd

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

src_c/static.c

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -33,84 +33,89 @@
3333
#undef import_pygame_bufferproxy
3434
#undef import_pygame_rwobject
3535
#undef import_pygame_event
36-
#undef import_pygame_imageext
37-
#undef import_pygame_image
38-
#undef import_pygame_font
3936

4037
void
4138
import_pygame_base(void)
4239
{
43-
puts("import_pygame_base");
4440
}
4541

4642
void
4743
import_pygame_rect(void)
4844
{
49-
puts("import_pygame_rect");
5045
}
5146

5247
void
5348
import_pygame_surface(void)
5449
{
55-
puts("import_pygame_surface");
5650
}
5751

5852

5953
void
6054
import_pygame_window(void)
6155
{
62-
puts("import_pygame_window");
6356
}
6457

6558
void
6659
import_pygame_geometry(void)
6760
{
68-
puts("import_pygame_geometry");
6961
}
7062

7163
void
7264
import_pygame_color(void)
7365
{
74-
puts("import_pygame_color");
7566
}
7667

7768
void
7869
import_pygame_font(void)
7970
{
80-
puts("import_pygame_font");
8171
}
8272

8373
void
8474
import_pygame_freetype(void)
8575
{
86-
puts("import_pygame_freetype");
8776
}
8877

8978

9079
void
9180
import_pygame_bufferproxy(void)
9281
{
93-
puts("import_pygame_bufferproxy");
9482
}
9583

9684
void
9785
import_pygame_rwobject(void)
9886
{
99-
puts("import_pygame_rwobject");
10087
}
10188

10289
void
10390
import_pygame_event(void)
10491
{
105-
puts("import_pygame_event");
10692
}
10793

10894
void
10995
import_pygame_joystick(void)
11096
{
111-
puts("import_pygame_joystick");
11297
}
11398

99+
#undef import_pygame_imageext
100+
#undef import_pygame_render
101+
#undef import_pygame_pixelarray
102+
103+
void
104+
import_pygame_imageext(void)
105+
{
106+
}
107+
108+
void
109+
import_pygame_render(void)
110+
{
111+
}
112+
113+
void
114+
import_pygame_pixelarray(void)
115+
{
116+
}
117+
118+
114119

115120
PyMODINIT_FUNC
116121
PyInit_base(void);

0 commit comments

Comments
 (0)