Subversion Repositories HomeAutomation

Rev

Rev 328 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. #include <stdio.h>
  2. #include "actions.h"
  3.  
  4. int do_upload(actions_t* action) {
  5.     puts("Upload!");
  6.     return 0;
  7. }
  8.  
  9. int do_reset(actions_t* action) {
  10.     puts("Reset!");
  11.     return 0;
  12. }
  13.  
  14. int do_start(actions_t* action) {
  15.     puts("Start!");
  16.     return 0;
  17. }
  18.  
  19. int do_dump(actions_t* action) {
  20.     puts("Dump!");
  21.     return 0;
  22. }
  23.  
  24. int do_send(actions_t* action) {
  25.     puts("Send!");
  26.     return 0;
  27. }
  28.