master
Perttu Ahola 2014-09-20 10:04:28 +03:00
parent f2fef5271c
commit e5fc8cc0b7
3 changed files with 6 additions and 0 deletions

View File

@ -69,3 +69,6 @@ Buildat Windows How-To
Umm... well, you need to first port some stuff. Try building it and see what
happens. Then fix it and make a pull request.
You probably want to use MinGW or Clang in order to bundle the compiler with the
end result.

View File

@ -27,6 +27,8 @@ does not exist.
Use std::unique_ptr and std::shared_ptr. (core/types.h: up_<> and sp_<>)
Header files must have zero preprocessor conditionals.
Function naming:
- Suffix _u: Unsafe, not included in public interface

View File

@ -82,6 +82,7 @@ Extension structure
-------------------
extension
`-- init.lua << Loaded when the module is required
`-- init.cpp << Compiled as a Lua module and loaded if init.lua doesn't exist
Extension behavior
------------------