mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@157 f3766cd6-281f-0410-b1cd-43a5c92072e9
13 lines
195 B
C
13 lines
195 B
C
// Common/MyInitGuid.h
|
|
|
|
#ifndef __COMMON_MYINITGUID_H
|
|
#define __COMMON_MYINITGUID_H
|
|
|
|
#ifdef _WIN32
|
|
#include <initguid.h>
|
|
#else
|
|
#define INITGUID
|
|
#include "MyGuidDef.h"
|
|
#endif
|
|
|
|
#endif
|