Rev 1392 | Rev 1430 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1392 | Rev 1404 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | /* |
1 | /* |
2 | * Copyright (C) 2006 Jakub Vana |
2 | * Copyright (C) 2006 Jakub Vana |
- | 3 | * Copyright (C) 2006 Ondrej Palkovsky |
|
3 | * All rights reserved. |
4 | * All rights reserved. |
4 | * |
5 | * |
5 | * Redistribution and use in source and binary forms, with or without |
6 | * Redistribution and use in source and binary forms, with or without |
6 | * modification, are permitted provided that the following conditions |
7 | * modification, are permitted provided that the following conditions |
7 | * are met: |
8 | * are met: |
Line 44... | Line 45... | ||
44 | #include <ipc/ns.h> |
45 | #include <ipc/ns.h> |
45 | 46 | ||
46 | #include <kernel/errno.h> |
47 | #include <kernel/errno.h> |
47 | #include <async.h> |
48 | #include <async.h> |
48 | 49 | ||
- | 50 | ||
- | 51 | #include "font-8x16.h" |
|
- | 52 | #include <string.h> |
|
- | 53 | ||
- | 54 | #include "helenos.xbm" |
|
49 | #include "fb.h" |
55 | #include "fb.h" |
50 | 56 | ||
51 | #define EFB (-1) |
57 | #define EFB (-1) |
52 | 58 | ||
53 | #define DEFAULT_BGCOLOR 0x000080 |
59 | #define DEFAULT_BGCOLOR 0x000080 |
Line 177... | Line 183... | ||
177 | 183 | ||
178 | async_manager(); |
184 | async_manager(); |
179 | /* Never reached */ |
185 | /* Never reached */ |
180 | return 0; |
186 | return 0; |
181 | } |
187 | } |
182 | /* |
- | |
183 | * Copyright (C) 2006 Ondrej Palkovsky |
- | |
184 | * All rights reserved. |
- | |
185 | * |
- | |
186 | * Redistribution and use in source and binary forms, with or without |
- | |
187 | * modification, are permitted provided that the following conditions |
- | |
188 | * are met: |
- | |
189 | * |
- | |
190 | * - Redistributions of source code must retain the above copyright |
- | |
191 | * notice, this list of conditions and the following disclaimer. |
- | |
192 | * - Redistributions in binary form must reproduce the above copyright |
- | |
193 | * notice, this list of conditions and the following disclaimer in the |
- | |
194 | * documentation and/or other materials provided with the distribution. |
- | |
195 | * - The name of the author may not be used to endorse or promote products |
- | |
196 | * derived from this software without specific prior written permission. |
- | |
197 | * |
- | |
198 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
- | |
199 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
- | |
200 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
- | |
201 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
- | |
202 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
- | |
203 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
- | |
204 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
- | |
205 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
- | |
206 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
- | |
207 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
- | |
208 | */ |
- | |
209 | - | ||
210 | #include "font-8x16.h" |
- | |
211 | #include <string.h> |
- | |
212 | - | ||
213 | #include "helenos.xbm" |
- | |
214 | - | ||
215 | - | ||
216 | - | ||
217 | - | ||
218 | 188 | ||
219 | 189 | ||
220 | #define GRAPHICS_ITEMS 1024 |
190 | #define GRAPHICS_ITEMS 1024 |
221 | 191 | ||
222 | 192 |