mirror of
https://github.com/UOX3DevTeam/UOX3
synced 2026-08-13 12:27:04 -04:00
9 lines
151 B
C++
9 lines
151 B
C++
#include "jstypes.h"
|
|
|
|
typedef void (*GreenFuncPtr)();
|
|
typedef void (JS_REQUIRES_STACK *RedFuncPtr)();
|
|
|
|
GreenFuncPtr Test(RedFuncPtr p)
|
|
{
|
|
return p;
|
|
}
|