OSDN Git Service

68777d250853e0d728b8d00e255fbc877468bd1b
[bacon/BaCon-Japanese.git] / 関数・命令 / PROTO.txt
1   PROTO\r\r  【1.0 build 10 追加】\r   PROTO <function name>[,<function name> ][, ...] [ALIAS <word>]\r\r   Type: statement\r\r   Defines an external function so it is accepted by the BaCon parser.\r   Mutliple function names may be mentioned but these should be separated\r   by a comma. Optionally, PROTO accepts an alias which can be used instead\r   of the original function name. During compilation the BaCon program must\r   explicitly be linked with an external library to resolve the function\r   name. Examples:\r\r   PROTO glClear, glClearColor, glEnable\r   PROTO "glutSolidTeapot" ALIAS "TeaPot"\r\r