mirror of
https://github.com/AppleWin/AppleWin.git
synced 2026-04-20 00:17:16 +00:00
168e868677
. Replace TCHAR -> char. . Remove <tchar.h> and related functions.
15 lines
299 B
C++
15 lines
299 B
C++
// stdafx.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdint.h> // cleanup WORD DWORD -> uint16_t uint32_t
|
|
|
|
#include <string>
|