-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow natives to return structs and arrays.
Natives can now return enum structs and fixed-size arrays. The address is passed as a hidden first parameter. For example: native Struct DoStuff(int x, int y); Will have: params[0] = 3 params[1] = the address of the output struct params[2] = x params[3] = y The native MUST return params[1] on success, otherwise, behavior is undefined. It is recommended that when defining C++ definitions of SourcePawn structs, to use `#pragma pack(push, 1)` and `#pragma pack(pop)`. In addition, the only types that should appear are "cell_t" and "float". No other type should be used for scalars. For arrays, "char" may be used, but not as a scalar. When using char arrays, the C++ definition must be careful to convert the char size to a cell-aligned size. For example: enum struct MyStruct { int x; int y; char message[50]; } Should look like this in C++: #pragma pack(push, 1) struct MyStruct { cell_t x; cell_t y; char message[CharArraySize<50>::bytes]; }; #pragma pack(pop)
- Loading branch information
Showing
9 changed files
with
111 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters