2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00
Files
build/jam_src/modules.h
Dave Abrahams fd5b271d4d True 'C' compatibility
[SVN r13700]
2002-05-06 22:19:20 +00:00

26 lines
724 B
C

/* (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and
* distribute this software is granted provided this copyright notice appears
* in all copies. This software is provided "as is" without express or implied
* warranty, and with no claim as to its suitability for any purpose.
*/
#ifndef MODULES_DWA10182001_H
# define MODULES_DWA10182001_H
struct module
{
char* name;
struct hash* rules;
struct hash* variables;
};
typedef struct module module; /* MSVC debugger gets confused unless this is provided */
module* bindmodule( char* name );
module* root_module();
void bind_module_var( module*, char* name );
void enter_module( module* );
void exit_module( module* );
#endif