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.
25 lines
524 B
25 lines
524 B
/******************************Module*Header*******************************\
|
|
* Module Name: texture.h
|
|
*
|
|
* Local texture processing functions
|
|
*
|
|
* Copyright (c) 1995 Microsoft Corporation
|
|
*
|
|
\**************************************************************************/
|
|
|
|
#ifndef __texture_h__
|
|
#define __texture_h__
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern BOOL bVerifyDIB(LPTSTR pszFileName, ISIZE *pSize );
|
|
extern BOOL bVerifyRGB(LPTSTR pszFileName, ISIZE *pSize );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __texture_h__
|