40 lines
560 B
C
40 lines
560 B
C
|
/*++
|
||
|
|
||
|
Copyright (c) 2000 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
precomp.h
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
includes
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
Jeff Sigman 05/01/00 Created
|
||
|
Jeff Sigman 05/10/00 Version 1.5 released
|
||
|
Jeff Sigman 10/18/00 Fix for Soft81 bug(s)
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#ifndef __PRECOMP_H__
|
||
|
#define __PRECOMP_H__
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER > 1000
|
||
|
|
||
|
#include <efi.h>
|
||
|
#include <efilib.h>
|
||
|
|
||
|
#include "efintldr.h"
|
||
|
#include "utils.h"
|
||
|
#include "menu.h"
|
||
|
|
||
|
#define wackc '\\'
|
||
|
#define wacks "\\"
|
||
|
|
||
|
#endif // __PRECOMP_H__
|
||
|
|