Files
AppleWin/test/TestCPU6502/stdafx.h
T
Andrea 168e868677 Remove TCHAR and <tchar.h> (PR #1373)
. Replace TCHAR -> char.
. Remove <tchar.h> and related functions.
2025-02-08 11:09:09 +00:00

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>