mirror of
https://github.com/UOX3DevTeam/UOX3
synced 2026-08-13 12:27:04 -04:00
18 lines
203 B
C++
18 lines
203 B
C++
#include "jstypes.h"
|
|
|
|
void GreenFunc();
|
|
JS_REQUIRES_STACK void RedFunc();
|
|
|
|
typedef void (*GreenFuncPtr)();
|
|
|
|
struct S
|
|
{
|
|
int i;
|
|
GreenFuncPtr p;
|
|
};
|
|
|
|
S sa[] = {
|
|
{ 2, GreenFunc },
|
|
{ 1, RedFunc },
|
|
};
|
|
|