mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
/*
|
|
**------------------------------------------------------------------------------
|
|
** Module: Disk Cleanup Manager
|
|
** File: msprintf.h
|
|
**
|
|
** Purpose: various common stuff for this module
|
|
** Notes:
|
|
** Mod Log: Created by Rich Jernigan (??/??)
|
|
** Modified by Shawn Brown (2/95)
|
|
** Modified by Jason Cobb (2/97)
|
|
**
|
|
** Copyright (c)1995 Microsoft Corporation, All Rights Reserved
|
|
**------------------------------------------------------------------------------
|
|
*/
|
|
#ifndef MSPRINTF_H
|
|
#define MSPRINTF_H
|
|
|
|
/*
|
|
**------------------------------------------------------------------------------
|
|
** Project include files
|
|
**------------------------------------------------------------------------------
|
|
*/
|
|
#ifndef COMMON_H
|
|
#include "common.h"
|
|
#endif
|
|
|
|
/*
|
|
**------------------------------------------------------------------------------
|
|
** Global Prototypes
|
|
**------------------------------------------------------------------------------
|
|
*/
|
|
|
|
TCHAR * cdecl SHFormatMessage( DWORD dwMessageId, ...);
|
|
|
|
#endif // MSPRINTF_H
|
|
/*
|
|
**------------------------------------------------------------------------------
|
|
** End of File
|
|
**------------------------------------------------------------------------------
|
|
*/
|
|
|