ExecuteApplets.c 800 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ExecuteApplets (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * call appropriate ExecuteApplets function based on detected NVM
  15. * file format;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef EXECUTEAPPLETS_SOURCE
  22. #define EXECUTEAPPLETS_SOURCE
  23. #include "../plc/plc.h"
  24. signed ExecuteApplets (struct plc * plc)
  25. {
  26. return (NVMSelect (plc, ExecuteApplets1, ExecuteApplets2));
  27. }
  28. #endif