@@ -759,7 +759,7 @@ glfwSetWindowPosCallback(window, cbfun);
759
759
GLFWwindow * window
760
760
SV * cbfun
761
761
CODE :
762
- void ( * fpstatus )() ;
762
+ GLFWwindowposfun fpstatus ;
763
763
void * upoint ;
764
764
int cvind = windowposfun ;
765
765
int i ;
@@ -787,7 +787,7 @@ glfwSetWindowSizeCallback(window, cbfun);
787
787
GLFWwindow * window
788
788
SV * cbfun
789
789
CODE :
790
- void ( * fpstatus )() ;
790
+ GLFWwindowsizefun fpstatus ;
791
791
void * upoint ;
792
792
int cvind = windowsizefun ;
793
793
int i ;
@@ -814,7 +814,7 @@ glfwSetWindowCloseCallback(window, cbfun);
814
814
GLFWwindow * window
815
815
SV * cbfun
816
816
CODE :
817
- void ( * fpstatus )() ;
817
+ GLFWwindowclosefun fpstatus ;
818
818
void * upoint ;
819
819
int cvind = windowclosefun ;
820
820
int i ;
@@ -841,7 +841,7 @@ glfwSetWindowRefreshCallback(window, cbfun);
841
841
GLFWwindow * window
842
842
SV * cbfun
843
843
CODE :
844
- void ( * fpstatus )() ;
844
+ GLFWwindowrefreshfun fpstatus ;
845
845
void * upoint ;
846
846
int cvind = windowrefreshfun ;
847
847
int i ;
@@ -868,7 +868,7 @@ glfwSetWindowFocusCallback(window, cbfun);
868
868
GLFWwindow * window
869
869
SV * cbfun
870
870
CODE :
871
- void ( * fpstatus )() ;
871
+ GLFWwindowfocusfun fpstatus ;
872
872
void * upoint ;
873
873
int cvind = windowfocusfun ;
874
874
int i ;
@@ -895,7 +895,7 @@ glfwSetWindowIconifyCallback(window, cbfun);
895
895
GLFWwindow * window
896
896
SV * cbfun
897
897
CODE :
898
- void ( * fpstatus )() ;
898
+ GLFWwindowiconifyfun fpstatus ;
899
899
void * upoint ;
900
900
int cvind = windowiconifyfun ;
901
901
int i ;
@@ -922,7 +922,7 @@ glfwSetFramebufferSizeCallback(window, cbfun);
922
922
GLFWwindow * window
923
923
SV * cbfun
924
924
CODE :
925
- void ( * fpstatus )() ;
925
+ GLFWframebuffersizefun fpstatus ;
926
926
void * upoint ;
927
927
int cvind = framebuffersizefun ;
928
928
int i ;
@@ -949,7 +949,7 @@ glfwSetKeyCallback(window, cbfun);
949
949
GLFWwindow * window
950
950
SV * cbfun
951
951
CODE :
952
- void ( * fpstatus )() ;
952
+ GLFWkeyfun fpstatus ;
953
953
void * upoint ;
954
954
int cvind = keyfun ;
955
955
int i ;
@@ -977,7 +977,7 @@ glfwSetCharCallback(window, cbfun);
977
977
GLFWwindow * window
978
978
SV * cbfun
979
979
CODE :
980
- void ( * fpstatus )() ;
980
+ GLFWcharfun fpstatus ;
981
981
void * upoint ;
982
982
int cvind = charfun ;
983
983
int i ;
@@ -1004,7 +1004,7 @@ glfwSetCharModsCallback(window, cbfun);
1004
1004
GLFWwindow * window
1005
1005
SV * cbfun
1006
1006
CODE :
1007
- void ( * fpstatus )() ;
1007
+ GLFWcharmodsfun fpstatus ;
1008
1008
void * upoint ;
1009
1009
int cvind = charmodsfun ;
1010
1010
int i ;
@@ -1031,7 +1031,7 @@ glfwSetMouseButtonCallback(window, cbfun);
1031
1031
GLFWwindow * window
1032
1032
SV * cbfun
1033
1033
CODE :
1034
- void ( * fpstatus )() ;
1034
+ GLFWmousebuttonfun fpstatus ;
1035
1035
void * upoint ;
1036
1036
int cvind = mousebuttonfun ;
1037
1037
int i ;
@@ -1058,7 +1058,7 @@ glfwSetCursorPosCallback(window, cbfun);
1058
1058
GLFWwindow * window
1059
1059
SV * cbfun
1060
1060
CODE :
1061
- void ( * fpstatus )() ;
1061
+ GLFWcursorposfun fpstatus ;
1062
1062
void * upoint ;
1063
1063
int cvind = cursorposfun ;
1064
1064
int i ;
@@ -1085,7 +1085,7 @@ glfwSetCursorEnterCallback(window, cbfun);
1085
1085
GLFWwindow * window
1086
1086
SV * cbfun
1087
1087
CODE :
1088
- void ( * fpstatus )() ;
1088
+ GLFWcursorenterfun fpstatus ;
1089
1089
void * upoint ;
1090
1090
int cvind = cursorenterfun ;
1091
1091
int i ;
@@ -1112,7 +1112,7 @@ glfwSetScrollCallback(window, cbfun);
1112
1112
GLFWwindow * window
1113
1113
SV * cbfun
1114
1114
CODE :
1115
- void ( * fpstatus )() ;
1115
+ GLFWscrollfun fpstatus ;
1116
1116
void * upoint ;
1117
1117
int cvind = scrollfun ;
1118
1118
int i ;
@@ -1139,7 +1139,7 @@ glfwSetDropCallback(window, cbfun);
1139
1139
GLFWwindow * window
1140
1140
SV * cbfun
1141
1141
CODE :
1142
- void ( * fpstatus )() ;
1142
+ GLFWdropfun fpstatus ;
1143
1143
void * upoint ;
1144
1144
int cvind = dropfun ;
1145
1145
int i ;
@@ -1170,7 +1170,7 @@ void
1170
1170
glfwSetErrorCallback (cbfun )
1171
1171
SV * cbfun
1172
1172
CODE :
1173
- void ( * fpstatus )() ;
1173
+ GLFWerrorfun fpstatus ;
1174
1174
// Warn if used in non-void context
1175
1175
if (GIMME_V != G_VOID ) callback_warn ();
1176
1176
//
@@ -1190,7 +1190,7 @@ void
1190
1190
glfwSetMonitorCallback (cbfun )
1191
1191
SV * cbfun
1192
1192
CODE :
1193
- void ( * fpstatus )() ;
1193
+ GLFWmonitorfun fpstatus ;
1194
1194
// Warn if used in non-void context
1195
1195
if (GIMME_V != G_VOID ) callback_warn ();
1196
1196
// Need to fix return of previous CV
@@ -1209,7 +1209,7 @@ void
1209
1209
glfwSetJoystickCallback (cbfun )
1210
1210
SV * cbfun
1211
1211
CODE :
1212
- void ( * fpstatus )() ;
1212
+ GLFWjoystickfun fpstatus ;
1213
1213
// Warn if used in non-void context
1214
1214
if (GIMME_V != G_VOID ) callback_warn ();
1215
1215
// Need to fix return of previous CV
0 commit comments