?? stdafx.h
字號(hào):
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#include <stdio.h>
#include <tchar.h>
typedef struct daodMat
{
int type;
int step;
/* for internal use only */
int* refcount;
int hdr_refcount;
union
{
unsigned char* ptr;
short* s;
int* i;
float* fl;
double* db;
} data;
int rows;
int cols;
} daodMat;
// TODO: reference additional headers your program requires here
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -