OpenCBM
|
Shared library / DLL for accessing the driver. More...
Go to the source code of this file.
Macros | |
#define | DBG_USERMODE |
#define | DBG_PROGNAME "OPENCBM.DLL" |
#define | DLL |
mark: We are building the DLL */ | |
Functions | |
char CBMAPIDECL | cbm_petscii2ascii_c (char Character) |
Convert a PETSCII character to ASCII. More... | |
char CBMAPIDECL | cbm_ascii2petscii_c (char Character) |
Convert an ASCII character to PETSCII. More... | |
char *CBMAPIDECL | cbm_petscii2ascii (char *Str) |
Convert an null-termined PETSCII string to ASCII. More... | |
char *CBMAPIDECL | cbm_ascii2petscii (char *Str) |
Convert an null-termined ASCII string to PETSCII. More... | |
#define DBG_PROGNAME "OPENCBM.DLL" |
#define DBG_USERMODE |
char* CBMAPIDECL cbm_ascii2petscii | ( | char * | Str | ) |
Convert an null-termined ASCII string to PETSCII.
This function converts a string in ASCII to PETSCII.
Str | Pointer to a buffer which holds a null-termined string in ASCII. |
Definition at line 160 of file petscii.c.
References cbm_ascii2petscii_c().
char CBMAPIDECL cbm_ascii2petscii_c | ( | char | Character | ) |
Convert an ASCII character to PETSCII.
This function converts a character in ASCII to PETSCII.
Character | The character value to be converted in ASCII |
Definition at line 105 of file petscii.c.
Referenced by cbm_ascii2petscii().
char* CBMAPIDECL cbm_petscii2ascii | ( | char * | Str | ) |
Convert an null-termined PETSCII string to ASCII.
This function converts a string in PETSCII to ASCII.
Str | Pointer to a buffer which holds a null-termined string in PETCII. |
If some character cannot be printer on the PC, they are replaced with a dot (".").
Definition at line 136 of file petscii.c.
References cbm_petscii2ascii_c().
char CBMAPIDECL cbm_petscii2ascii_c | ( | char | Character | ) |
Convert a PETSCII character to ASCII.
This function converts a character in PETSCII to ASCII.
Character | The character value to be converted in PETSCII |
Definition at line 64 of file petscii.c.
Referenced by cbm_petscii2ascii().