22 lines
378 B
C
22 lines
378 B
C
#ifndef __SHOWICON_H__
|
|
#define __SHOWICON_H__
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include <windows.h>
|
|
#include <commdlg.h>
|
|
#include <shellapi.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <malloc.h>
|
|
#include <memory.h>
|
|
#include <tchar.h>
|
|
|
|
#include "resource.h"
|
|
|
|
#define WM_SO_LOADFILE (WM_USER + 1)
|
|
|
|
#endif // !__SHOWICON_H__
|