12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /*++
- Copyright (c) 2017 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- spawnp.h
- Abstract:
- This header contains definitions for the spawn module.
- Author:
- Evan Green 21-Jun-2017
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- #include <minoca/lib/types.h>
- #include <minoca/lib/chalk.h>
- #include "spawnos.h"
- //
- // --------------------------------------------------------------------- Macros
- //
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // -------------------------------------------------------- Function Prototypes
- //
- //
- // Generic spawn module functions
- //
- VOID
- CkpSpawnModuleInit (
- PCK_VM Vm
- );
- /*++
- Routine Description:
- This routine populates the spawn module namespace.
- Arguments:
- Vm - Supplies a pointer to the virtual machine.
- Return Value:
- None.
- --*/
|