~ubuntu-branches/ubuntu/trusty/teeworlds/trusty-updates

« back to all changes in this revision

Viewing changes to src/engine/external/glfw/lib/x11/x11_enable.c

  • Committer: Bazaar Package Importer
  • Author(s): Gonéri Le Bouder
  • Date: 2009-04-12 02:32:37 UTC
  • mfrom: (3.2.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090412023237-ufmf1xn0rkjmx6f3
Tags: 0.5.1-2
* Fix the ouput of teeworlds-server --help with /bin/sh ->
  /bin/bash (Closes: #511600)
* Standard version 3.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//========================================================================
2
 
// GLFW - An OpenGL framework
3
 
// File:        x11_enable.c
4
 
// Platform:    X11 (Unix)
5
 
// API version: 2.6
6
 
// WWW:         http://glfw.sourceforge.net
7
 
//------------------------------------------------------------------------
8
 
// Copyright (c) 2002-2006 Camilla Berglund
9
 
//
10
 
// This software is provided 'as-is', without any express or implied
11
 
// warranty. In no event will the authors be held liable for any damages
12
 
// arising from the use of this software.
13
 
//
14
 
// Permission is granted to anyone to use this software for any purpose,
15
 
// including commercial applications, and to alter it and redistribute it
16
 
// freely, subject to the following restrictions:
17
 
//
18
 
// 1. The origin of this software must not be misrepresented; you must not
19
 
//    claim that you wrote the original software. If you use this software
20
 
//    in a product, an acknowledgment in the product documentation would
21
 
//    be appreciated but is not required.
22
 
//
23
 
// 2. Altered source versions must be plainly marked as such, and must not
24
 
//    be misrepresented as being the original software.
25
 
//
26
 
// 3. This notice may not be removed or altered from any source
27
 
//    distribution.
28
 
//
29
 
//========================================================================
30
 
 
31
 
#include "internal.h"
32
 
 
33
 
 
34
 
//************************************************************************
35
 
//****               Platform implementation functions                ****
36
 
//************************************************************************
37
 
 
38
 
//========================================================================
39
 
// _glfwPlatformEnableSystemKeys() - Enable system keys
40
 
// _glfwPlatformDisableSystemKeys() - Disable system keys
41
 
//========================================================================
42
 
 
43
 
void _glfwPlatformEnableSystemKeys( void )
44
 
{
45
 
    // Not supported under X11 (yet)
46
 
}
47
 
 
48
 
void _glfwPlatformDisableSystemKeys( void )
49
 
{
50
 
    // Not supported under X11 (yet)
51
 
}