windows-nt/Source/XPSP1/NT/shell/applets/cleanup/cleanmgr/textout.h
2020-09-26 16:20:57 +08:00

27 lines
467 B
C

#ifndef TEXTOUT_H
#define TEXTOUT_H
/*
* DEFINITIONS ________________________________________________________________
*
*/
#ifdef UNICODE
#define szTextOutCLASS TEXT("TextOutClassW")
#else
#define szTextOutCLASS TEXT("TextOutClass")
#endif
/*
* PROTOTYPES _________________________________________________________________
*
*/
void RegisterTextOutClass (HINSTANCE);
void UnregisterTextOutClass (void);
#endif