Frost Moon Project

Src/Thumbnail.h-Ashley Ver.1.30- - Frost Moon Project アクセスランキング

Home > ソフトウェア > Ashley > Ashley130.zip/Ashley130.exe > Src > Thumbnail.h

//Thumbnail.h

/*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#
    Ashley Ver.1.30
    Coded by x@rgs

    This code is released under NYSL Version 0.9982
    See NYSL_withfaq.TXT for further details.

    Ashleyは、アップローダからダウンロードしたZIPやRAR等のファイル名を元に戻すソフトです。
#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*/


#ifndef THUMBNAIL_H
#define THUMBNAIL_H

//インスタンスハンドル
extern HINSTANCE g_hInstance;

#ifdef __cplusplus
extern "C"{
#endif

//16x16のダミーアイコンを描写したHBITMAPを作成
HBITMAP CreateDummyBitmap(int iWidth,int iHeight);
//ファイルパスからアイコンを取得しBitmapに変換
HBITMAP CreateBitmapFromPath(LPCTSTR lpszPath,int iWidth,int iHeight);
//書庫ファイル内の画像のサムネイルをHBITMAPで取得
HBITMAP GetThumbnailBitmapFromArchiveFile(const TCHAR* pszFilePath,const int iWidth,const int iHeight);

#ifdef __cplusplus
}
#endif

#endif //THUMBNAIL_H

Home > ソフトウェア > Ashley > Ashley130.zip/Ashley130.exe > Src > Thumbnail.h