mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 08:38:25 +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
|
||||
//
|
||||
|
||||
#ifndef _UNICORN_DYNLOAD_H_
|
||||
#define _UNICORN_DYNLOAD_H_
|
||||
#ifndef UNICORN_DYNLOAD_H
|
||||
#define UNICORN_DYNLOAD_H
|
||||
|
||||
// Undefine shared here so that functions aren't defined as: "__declspec(dllexport)"
|
||||
#ifdef UNICORN_SHARED
|
||||
|
@ -63,5 +63,5 @@ bool uc_dyn_free(void);
|
|||
}
|
||||
#endif
|
||||
|
||||
#endif // _UNICORN_DYNLOAD_H_
|
||||
#endif // UNICORN_DYNLOAD_H
|
||||
|
||||
|
|
Loading…
Reference in a new issue