dllapi icon indicating copy to clipboard operation
dllapi copied to clipboard

custom symbol resolver

Open wang-bin opened this issue 11 years ago • 1 comments

e.g. gl use GetProcAddress

wang-bin avatar Mar 22 '14 16:03 wang-bin

#define DLLAPI_USER_RESOLVER 0
#define DEFINE_DLL_INSTANCE_N_R(dlid, ...) \
    ....if (DLLAPI_USER_RESOLVER)
            return DLLAPI_USER_RESOLVER (sym) ...
#undef DLLAPI_USER_RESOLVER



#define DLLAPI_USER_RESOLVER _wglGetProcAddress
DEFINE_DLL_INSTANCE_N_R(....)
....
#undef DLLAPI_USER_RESOLVER

wang-bin avatar Mar 28 '14 06:03 wang-bin