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.
22 lines
354 B
22 lines
354 B
// stdhdr.h
|
|
//
|
|
|
|
// Only include this stuff once
|
|
#ifndef __STDHDR_H
|
|
#define __STDHDR_H
|
|
|
|
// Windows Header Files:
|
|
#include <windows.h>
|
|
#include <tchar.h>
|
|
#include <wininet.h>
|
|
#include <winineti.h>
|
|
|
|
// C RunTime Header Files
|
|
#include <stdlib.h>
|
|
#include <malloc.h>
|
|
#include <memory.h>
|
|
|
|
// Local Header Files
|
|
#include "cdcache.h"
|
|
|
|
#endif
|