1
0
mirror of https://github.com/deuill/go-php.git synced 2024-09-21 08:50:45 +00:00
go-php/engine/engine.h
Alex Palaistras 8a2ce468e2 Add documentation blocks.
Added documentation blocks and licence headers to all files.
2015-10-04 19:28:44 +01:00

17 lines
432 B
C

// Copyright 2015 Alexander Palaistras. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
#ifndef ENGINE_H
#define ENGINE_H
typedef struct _php_engine {
#ifdef ZTS
void ***tsrm_ls; // Local storage for thread-safe operations, used across the PHP engine.
#endif
} php_engine;
php_engine *engine_init(void);
void engine_shutdown(php_engine *engine);
#endif