30 lines
445 B
C
30 lines
445 B
C
#ifndef __PCH_H
|
|
#define __PCH_H
|
|
|
|
// include header file only once
|
|
#pragma once
|
|
|
|
//
|
|
// public Windows header files
|
|
//
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
#include <tchar.h>
|
|
|
|
//
|
|
// public C header files
|
|
//
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <shlwapi.h>
|
|
#include <stdarg.h>
|
|
#include <shellapi.h>
|
|
|
|
//
|
|
// private Common header files
|
|
//
|
|
#include "cmdline.h"
|
|
#include "cmdlineres.h"
|
|
|
|
#endif // __PCH_H
|