Skip to content

Instantly share code, notes, and snippets.

@BitPuffin
Created March 20, 2014 10:43
Show Gist options
  • Save BitPuffin/9661175 to your computer and use it in GitHub Desktop.
Save BitPuffin/9661175 to your computer and use it in GitHub Desktop.
include/allegro5/platform/albcc32.h
62:#define AL_FUNC(type, name, args) extern _AL_DLL type name args
64:#define AL_FUNCPTR(type, name, args) extern _AL_DLL type (*name) args
include/allegro5/platform/aldmc.h
56:#define AL_FUNC(type, name, args) extern type name args
58:#define AL_FUNCPTR(type, name, args) extern _AL_DLL type (*name) args
include/allegro5/platform/almngw32.h
54:#define AL_FUNC(type, name, args) extern type name args
56:#define AL_FUNCPTR(type, name, args) extern _AL_DLL type (*name) args
include/allegro5/platform/almsvc.h
59:#define AL_FUNC(type, name, args) _AL_DLL type __cdecl name args
61:#define AL_FUNCPTR(type, name, args) extern _AL_DLL type (__cdecl *name) args
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment