12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /*++
- 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:
- entry.c
- Abstract:
- This module implements the dynamic library entry point for the Chalk _time
- module. It is kept separate from the rest of the library so that if the
- module is statically linked in this file can simply be left out.
- Author:
- Evan Green 21-Jun-2017
- Environment:
- C
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- #include "spawnp.h"
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // ----------------------------------------------- Internal Function Prototypes
- //
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // ------------------------------------------------------------------ Functions
- //
- __DLLEXPORT
- VOID
- CkModuleInit (
- PCK_VM Vm
- )
- /*++
- Routine Description:
- This routine is the entry point into the module. It populates the module
- namespace.
- Arguments:
- Vm - Supplies a pointer to the virtual machine.
- Return Value:
- None.
- --*/
- {
- CkpSpawnModuleInit(Vm);
- return;
- }
- //
- // --------------------------------------------------------- Internal Functions
- //
|