mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 12:58:09 +00:00
modify header guard of unicorn_dynload.h for consistency
This commit is contained in:
parent
fc54007fab
commit
c37b2582d7
1 changed files with 3 additions and 3 deletions
|
@ -26,8 +26,8 @@
|
||||||
// Zak Escano - November 2015
|
// Zak Escano - November 2015
|
||||||
//
|
//
|
||||||
|
|
||||||
#ifndef _UNICORN_DYNLOAD_H_
|
#ifndef UNICORN_DYNLOAD_H
|
||||||
#define _UNICORN_DYNLOAD_H_
|
#define UNICORN_DYNLOAD_H
|
||||||
|
|
||||||
// Undefine shared here so that functions aren't defined as: "__declspec(dllexport)"
|
// Undefine shared here so that functions aren't defined as: "__declspec(dllexport)"
|
||||||
#ifdef UNICORN_SHARED
|
#ifdef UNICORN_SHARED
|
||||||
|
@ -63,5 +63,5 @@ bool uc_dyn_free(void);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif // _UNICORN_DYNLOAD_H_
|
#endif // UNICORN_DYNLOAD_H
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue