mirror of
https://github.com/UOX3DevTeam/UOX3
synced 2026-08-13 12:27:04 -04:00
15 lines
199 B
C++
15 lines
199 B
C++
#include "jstypes.h"
|
|
|
|
typedef void (*GreenFuncPtr)();
|
|
typedef void (JS_REQUIRES_STACK *RedFuncPtr)();
|
|
|
|
struct Foo
|
|
{
|
|
int i;
|
|
GreenFuncPtr p;
|
|
};
|
|
|
|
void Test(Foo *foo, RedFuncPtr p)
|
|
{
|
|
foo->p = p;
|
|
}
|