Frost Moon Project

Src/Common.h-その娘なら今俺のクリップボードで寝てるけど Ver.1.00- - Frost Moon Project アクセスランキング

Home > ソフトウェア > その娘なら今俺のクリップボードで寝てるけど > clipNENNE100.zip > Src > Common.h

//Common.h
//共通ヘッダファイル

/*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#
    その娘なら今俺のクリップボードで寝てるけど Ver.1.00
    Coded by x@rgs

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

    「その娘なら今俺のクリップボードで寝てるけど」は、
    指定された画像ファイルの内容をクリップボードにコピーするソフトウェアです。
#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*/


#ifndef COMMON_H
#define COMMON_H

#ifndef STRICT
    #define STRICT
#endif
#ifndef UNICODE
    #define UNICODE
#endif
#ifndef _UNICODE
    #define _UNICODE
#endif

#include<windows.h>
#include<tchar.h>

#ifndef UNIT
    #define UNIT unsigned int
#endif

//配列の要素数
//#define ARRAY_SIZEOF(array) (sizeof(array)/sizeof(array[0]))
template inline unsigned int array_sizeof(const T (&array)[N]){
    return sizeof(array)/sizeof(T);
}
//メンバの要素数
#define member_sizeof(type,member) ARRAY_SIZEOF(((type*)0)->member)

#endif //COMMON_H

Home > ソフトウェア > その娘なら今俺のクリップボードで寝てるけど > clipNENNE100.zip > Src > Common.h