[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: RE: Register static lib C module
- From: John Dunn <John.Dunn@...>
- Date: Mon, 29 Aug 2016 16:19:34 +0000
Henrik Ilgen wrote:
> The very first thing require() does is to look up if the required module can be found in package.loaded - so if you store > your module there manually, you shouldn't have any problems.
Thanks Henrik. While not exactly what I was looking for ( I still wanted the user to call require ) it did lead me to the solution - package.preload.
John