16 lines
249 B
C
16 lines
249 B
C
#ifndef _PRIV_H_
|
|
#define _PRIV_H_
|
|
|
|
#include <windows.h>
|
|
#include <shellapi.h>
|
|
#include <shlobj.h>
|
|
#include <shlguid.h>
|
|
#include "resource.h"
|
|
|
|
#ifndef ARRAYSIZE
|
|
#define ARRAYSIZE(a) (sizeof(a)/sizeof(a[0]))
|
|
#endif
|
|
|
|
#endif // _PRIV_H_
|
|
|