aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/imgui/examples/example_null/main.cpp
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-08-01 14:39:56 +0200
committerDavid Shah <davey1576@gmail.com>2018-08-01 14:39:56 +0200
commit1a34d6d33438671c8704388c3911a90bb2184a9b (patch)
tree19045d5c30454ae2f54ffd53067115a13be1aeab /3rdparty/imgui/examples/example_null/main.cpp
parentf041f0189597d10fee7e2ecb8bfdb3324dea3a43 (diff)
downloadnextpnr-1a34d6d33438671c8704388c3911a90bb2184a9b.tar.gz
nextpnr-1a34d6d33438671c8704388c3911a90bb2184a9b.tar.bz2
nextpnr-1a34d6d33438671c8704388c3911a90bb2184a9b.zip
ecp5: Memory fixes in packer
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to '3rdparty/imgui/examples/example_null/main.cpp')
0 files changed, 0 insertions, 0 deletions
hlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
--  Output errors on the console.
--  Copyright (C) 2018 Tristan Gingold
--
--  This program is free software: you can redistribute it and/or modify
--  it under the terms of the GNU General Public License as published by
--  the Free Software Foundation, either version 2 of the License, or
--  (at your option) any later version.
--
--  This program is distributed in the hope that it will be useful,
--  but WITHOUT ANY WARRANTY; without even the implied warranty of
--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
--  GNU General Public License for more details.
--
--  You should have received a copy of the GNU General Public License
--  along with this program.  If not, see <gnu.org/licenses>.

package Errorout.Console is
   --  Set the program name, used in error messages for options.  Not displayed
   --  if not initialized.
   procedure Set_Program_Name (Name : String);

   --  Report handle for the console.
   procedure Console_Error_Start (E : Error_Record);
   procedure Console_Message (Str : String);
   procedure Console_Message_End;

   --  Install the handlers for reporting errors.
   procedure Install_Handler;
end Errorout.Console;