mirror of
https://github.com/UOX3DevTeam/UOX3
synced 2026-08-13 12:27:04 -04:00
12 lines
216 B
C++
12 lines
216 B
C++
#include "jstypes.h"
|
|
|
|
void GreenFunc();
|
|
|
|
typedef void (JS_REQUIRES_STACK *RedFuncPtr)();
|
|
|
|
RedFuncPtr Test()
|
|
{
|
|
// assigning a green function to a red function pointer is ok
|
|
RedFuncPtr p = GreenFunc;
|
|
return p;
|
|
}
|