You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
445 B
29 lines
445 B
#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
|