# 型 typedef, よく使うマクロ

ソース中で利用される主な typedef型は jendefs.h 定義されている。

| typedef | 型              | 解説          |
| ------- | -------------- | ----------- |
| bool\_t | unsigned char  | ブール型として利用する |
| string  | char \*        |             |
| uint8   | unsigned char  |             |
| int8    | char           |             |
| uint16  | unsigned short |             |
| int16   | short          |             |
| uint32  | unsigned long  |             |
| int32   | long           |             |

以下に、コード中でよく利用されるマクロ定義を列挙します。

| 定義名     |        |                  |
| ------- | ------ | ---------------- |
| FALSE   | 0      |                  |
| TRUE    | 1      |                  |
| PUBLIC  |        | 公開関数であることを明示する。  |
| PRIVATE | static | 非公開関数であることを明示する。 |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sdk.twelite.info/twelite-net-api-ref/typedef-yokuumakuro.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
