📄 teststruct.h
字号:
/******************************************************************* * * * teststruct.h * * * * This file is a part of the eXtremeDB source code * * Copyright (c) 2001-2007 McObject LLC * * All Rights Reserved * * * *******************************************************************/#ifndef __GUESS_H__#define __GUESS_H__#include "mcosql.h"using namespace McoSql;#ifndef MCO_PLATFORM_X64size_t const PAGE_SIZE = 128; // define eXtremeDB page size#elsesize_t const PAGE_SIZE = 256;#endifsize_t const DATABASE_SIZE = 4*1024*1024;void* const MAP_ADDRESS = (void*)0x20000000;double const EPSILON = 0.0001;int const nRecords = 100;struct Point { int x; int y;};struct Line { Point beg; Point end;};struct Polygon { Array* points;}; struct MyRecord { char* s; short i2; Point p; char i1; int64_t i8; float f; double d; Line l; Array* ai1; Array* vp; Array* lines; int i4;};GET_DICTIONARY(teststructdb);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -