Implement simulated counter hardware and more string literal changes

r3637 | dcl | 2012-07-11 15:08:50 +1000 (Wed, 11 Jul 2012) | 1 line
This commit is contained in:
Douglas Clowes
2012-07-11 15:08:50 +10:00
parent a4581ba153
commit c59a3979be
4 changed files with 124 additions and 6 deletions

View File

@@ -48,7 +48,7 @@ typedef struct parameter_t
} PARAMETERS, *pPARAMETERS;
bool param_set(pPARAMETERS pp, char* name, char* value);
bool param_set_cmd(pPARAMETERS pp, char* cmd);
bool param_get_cmd(pPARAMETERS pp, char* cmd, int n);
bool param_set(pPARAMETERS pp, const char* name, const char* value);
bool param_set_cmd(pPARAMETERS pp, const char* cmd);
bool param_get_cmd(pPARAMETERS pp, const char* cmd, int n);
#endif