~ubuntu-branches/ubuntu/quantal/mesa-glw/quantal

« back to all changes in this revision

Viewing changes to src/glut/directfb/menu.c

  • Committer: Bazaar Package Importer
  • Author(s): Morten Kjeldgaard
  • Date: 2008-05-06 16:19:15 UTC
  • Revision ID: james.westby@ubuntu.com-20080506161915-uynz7nftmfixu6bq
Tags: upstream-7.0.3
ImportĀ upstreamĀ versionĀ 7.0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2006 Claudio Ciccani <klan@users.sf.net>
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 * 
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Lesser General Public License for more details.
 
13
 * 
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with this library; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
17
 *
 
18
 */
 
19
 
 
20
#include "internal.h"
 
21
 
 
22
 
 
23
int GLUTAPIENTRY 
 
24
glutCreateMenu( void (GLUTCALLBACK *func) (int) )
 
25
{
 
26
     return 0;
 
27
}
 
28
 
 
29
void GLUTAPIENTRY
 
30
glutDestroyMenu( int menu )
 
31
{
 
32
}
 
33
 
 
34
 
 
35
int GLUTAPIENTRY
 
36
glutGetMenu( void )
 
37
{
 
38
     return 0;
 
39
}
 
40
 
 
41
 
 
42
void GLUTAPIENTRY 
 
43
glutSetMenu( int menu )
 
44
{
 
45
}
 
46
 
 
47
 
 
48
void GLUTAPIENTRY
 
49
glutAddMenuEntry( const char *label, int value )
 
50
{
 
51
}
 
52
 
 
53
 
 
54
void GLUTAPIENTRY
 
55
glutAddSubMenu( const char *label, int submenu )
 
56
{
 
57
}
 
58
 
 
59
 
 
60
void GLUTAPIENTRY
 
61
glutChangeToMenuEntry( int item, const char *label, int value )
 
62
{
 
63
}
 
64
 
 
65
 
 
66
void GLUTAPIENTRY
 
67
glutChangeToSubMenu( int item, const char *label, int submenu )
 
68
{
 
69
}
 
70
 
 
71
 
 
72
void GLUTAPIENTRY
 
73
glutRemoveMenuItem( int item )
 
74
{
 
75
}
 
76
 
 
77
 
 
78
void GLUTAPIENTRY
 
79
glutAttachMenu( int button )
 
80
{
 
81
}
 
82
 
 
83
 
 
84
void GLUTAPIENTRY
 
85
glutDetachMenu( int button )
 
86
{
 
87
}