spawnp.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*++
  2. Copyright (c) 2017 Minoca Corp.
  3. This file is licensed under the terms of the GNU General Public License
  4. version 3. Alternative licensing terms are available. Contact
  5. info@minocacorp.com for details. See the LICENSE file at the root of this
  6. project for complete licensing information.
  7. Module Name:
  8. spawnp.h
  9. Abstract:
  10. This header contains definitions for the spawn module.
  11. Author:
  12. Evan Green 21-Jun-2017
  13. --*/
  14. //
  15. // ------------------------------------------------------------------- Includes
  16. //
  17. #include <minoca/lib/types.h>
  18. #include <minoca/lib/chalk.h>
  19. #include "spawnos.h"
  20. //
  21. // --------------------------------------------------------------------- Macros
  22. //
  23. //
  24. // ---------------------------------------------------------------- Definitions
  25. //
  26. //
  27. // ------------------------------------------------------ Data Type Definitions
  28. //
  29. //
  30. // -------------------------------------------------------------------- Globals
  31. //
  32. //
  33. // -------------------------------------------------------- Function Prototypes
  34. //
  35. //
  36. // Generic spawn module functions
  37. //
  38. VOID
  39. CkpSpawnModuleInit (
  40. PCK_VM Vm
  41. );
  42. /*++
  43. Routine Description:
  44. This routine populates the spawn module namespace.
  45. Arguments:
  46. Vm - Supplies a pointer to the virtual machine.
  47. Return Value:
  48. None.
  49. --*/