26 lines
426 B
C++
26 lines
426 B
C++
#pragma once
|
|
|
|
#define WINVER 0x0501
|
|
#define _WIN32_WINNT 0x0501
|
|
#define _WIN32_IE 0x0600
|
|
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
#define _CRT_SECURE_NO_DEPRECATE
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
|
|
#include <string>
|
|
#include <map>
|
|
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
#include <wchar.h>
|
|
#include <tchar.h>
|
|
#include <process.h>
|
|
|
|
// mysql
|
|
#include <mysql.h>
|