Add 2 more temporary stubs

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1181 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
beuc 2012-03-17 14:18:33 +00:00
parent 6bc5a5c401
commit 2a3295e970

View File

@ -7,3 +7,10 @@ void fgDeactivateMenu( SFG_Window *window ) {
void fgDisplayMenu( void ) { void fgDisplayMenu( void ) {
fprintf(stderr, "fgDisplayMenu: STUB\n"); fprintf(stderr, "fgDisplayMenu: STUB\n");
} }
void fgUpdateMenuHighlight ( SFG_Menu *menu ) {
fprintf(stderr, "fgUpdateMenuHighlight: STUB\n");
}
GLboolean fgCheckActiveMenu ( SFG_Window *window, int button, GLboolean pressed,
int mouse_x, int mouse_y ) {
fprintf(stderr, "fgCheckActiveMenu: STUB\n");
}