Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
amxcons.h@0:3ab1d2d14eb3, 2012-11-15 (annotated)
- Committer:
- tylerwilson
- Date:
- Thu Nov 15 17:41:21 2012 +0000
- Revision:
- 0:3ab1d2d14eb3
Initial Pawn 4.x interpreter for mbed check-in
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| tylerwilson | 0:3ab1d2d14eb3 | 1 | #ifndef AMXCONS_H_INCLUDED |
| tylerwilson | 0:3ab1d2d14eb3 | 2 | #define AMXCONS_H_INCLUDED |
| tylerwilson | 0:3ab1d2d14eb3 | 3 | |
| tylerwilson | 0:3ab1d2d14eb3 | 4 | typedef struct tagFMTINFO { |
| tylerwilson | 0:3ab1d2d14eb3 | 5 | const cell *params; |
| tylerwilson | 0:3ab1d2d14eb3 | 6 | int numparams; |
| tylerwilson | 0:3ab1d2d14eb3 | 7 | int skip; /* number of characters to skip from the beginning */ |
| tylerwilson | 0:3ab1d2d14eb3 | 8 | int length; /* number of characters to print */ |
| tylerwilson | 0:3ab1d2d14eb3 | 9 | /* helper functions */ |
| tylerwilson | 0:3ab1d2d14eb3 | 10 | int (*f_putstr)(void *dest,const TCHAR *); |
| tylerwilson | 0:3ab1d2d14eb3 | 11 | int (*f_putchar)(void *dest,TCHAR); |
| tylerwilson | 0:3ab1d2d14eb3 | 12 | void *user; /* user data */ |
| tylerwilson | 0:3ab1d2d14eb3 | 13 | } AMX_FMTINFO; |
| tylerwilson | 0:3ab1d2d14eb3 | 14 | |
| tylerwilson | 0:3ab1d2d14eb3 | 15 | int amx_printstring(AMX *amx,cell *cstr,AMX_FMTINFO *info); |
| tylerwilson | 0:3ab1d2d14eb3 | 16 | |
| tylerwilson | 0:3ab1d2d14eb3 | 17 | #endif /* AMXCONS_H_INCLUDED */ |
