21 lines
347 B
C
21 lines
347 B
C
// stdafx.h: 标准系统包含文件的包含文件,
|
|
// 或是经常使用但不常更改的
|
|
// 项目特定的包含文件
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "targetver.h"
|
|
|
|
// C runtime header
|
|
#include <stdlib.h>
|
|
#include <malloc.h>
|
|
#include <memory.h>
|
|
#include <tchar.h>
|
|
|
|
// base header
|
|
#include "base/base.h"
|
|
|
|
// duilib
|
|
#include "duilib/UIlib.h"
|