mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
22 lines
408 B
C
22 lines
408 B
C
#ifndef __SHUTDOWN_PRECOMP_H
|
|
#define __SHUTDOWN_PRECOMP_H
|
|
|
|
#include <stdarg.h>
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winuser.h>
|
|
|
|
#include <stdio.h>
|
|
//#include <stdlib.h>
|
|
#include <tchar.h>
|
|
//#include <reason.h> //shutdown codes
|
|
|
|
#include "resource.h"
|
|
|
|
// misc.c
|
|
INT AllocAndLoadString(OUT LPTSTR *lpTarget,
|
|
IN HINSTANCE hInst,
|
|
IN UINT uID);
|
|
|
|
#endif
|