geste_1.1.0_55da4926/examples/utils/sdl/sdl_sdl_stdinc_h.adb

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
------------------------------------------------------------------------------
--          Copyright (C) 1995-2014, Free Software Foundation, Inc.         --
--                                                                          --
-- GNAT is free software;  you can  redistribute it  and/or modify it under --
-- terms of the  GNU General Public License as published  by the Free Soft- --
-- ware  Foundation;  either version 3,  or (at your option) any later ver- --
-- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE.                                     --
--                                                                          --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception,   --
-- version 3.1, as published by the Free Software Foundation.               --
--                                                                          --
-- In particular,  you can freely  distribute your programs  built with the --
-- GNAT Pro compiler, including any required library run-time units,  using --
-- any licensing terms  of your choosing.  See the AdaCore Software License --
-- for full details.                                                        --
--                                                                          --
-- GNAT was originally developed  by the GNAT team at  New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc.      --
--                                                                          --
------------------------------------------------------------------------------
pragma Style_Checks (Off);
pragma Warnings (Off);

with System.OS_Constants; use System.OS_Constants;

package body SDL_SDL_stdinc_h is
   function SDL_putenv (variable : Interfaces.C.Strings.chars_ptr) return int is
   begin
      if Target_OS = Windows then
         declare
            function Internal (variable : Interfaces.C.Strings.chars_ptr) return int;
            pragma Import (C, Internal, "SDL_putenv");
         begin
            return Internal(variable);
         end;
      else
         declare
            function Internal (variable : Interfaces.C.Strings.chars_ptr) return int;
            pragma Import (C, Internal, "putenv");
         begin
            return Internal(variable);
         end;
      end if;
   end SDL_putenv;
end;