Changes in kernel/generic/include/console/console.h [da52547:d99c1d2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/console/console.h
rda52547 rd99c1d2 37 37 38 38 #include <typedefs.h> 39 #include <print.h>40 39 #include <console/chardev.h> 41 42 #define PAGING(counter, increment, before, after) \43 do { \44 (counter) += (increment); \45 if ((counter) > 23) { \46 before; \47 printf(" -- Press any key to continue -- "); \48 indev_pop_character(stdin); \49 after; \50 printf("\n"); \51 (counter) = 0; \52 } \53 } while (0)54 40 55 41 extern indev_t *stdin; 56 42 extern outdev_t *stdout; 57 58 extern void early_putchar(wchar_t);59 43 60 44 extern indev_t *stdin_wire(void);
Note:
See TracChangeset
for help on using the changeset viewer.