Skip to content

Commit

Permalink
[SEGA NN] Add macros for Text-Form files for NodeNameList chunk (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheExentist151 authored Jul 24, 2024
1 parent 6bd0552 commit b0917f1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions hedgedocs/docs/nn/common/chunk-format/nodenamelist.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ struct NNS_NODENAMELIST
/* An array of NNS_NODENAME structs */
NNS_NODENAME* pNodeNameList;
};
```

!!! todo
Find the macros used in the text-form file format
/* Macros used by Text-Form files: */
#define NODENAMELIST( SortType, nNode, pNodeNameList ) { SortType, nNode, pNodeNameList }
```
## NNS_NODENAME
Expand All @@ -39,6 +39,9 @@ struct NNS_NODENAME
/* The node name */
char* Name;
};
/* Macros used by Text-Form files: */
#define NODENAME( iNode, Name ) { iNode, Name }
```

## NNE_NODENAME_SORTTYPE
Expand All @@ -54,7 +57,4 @@ enum NNE_NODENAME_SORTTYPE
/* Sorting by name */
NNE_NODENAME_SORTTYPE_NAME
};
```

!!! todo
Find the macros used in the text-form file format
```

0 comments on commit b0917f1

Please sign in to comment.