mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
17 lines
341 B
C
17 lines
341 B
C
|
#ifndef __SHUTDOWN_PRECOMP_H
|
||
|
#define __SHUTDOWN_PRECOMP_H
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <windows.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
|