#include <exception>#include <stdexcept>#include <new>#include <malloc.h>#include <stdio.h>#include <assert.h>#include <math.h>#include <float.h>#include "int_types.h"#include "traits.h"#include "bit_array.h"#include "primitives.h"#include "alloc.h"#include "array.h"#include "bit_array_impl.h"#include "binary_search.h"#include "bsearch_inline.h"#include "bsearch.h"#include "sort.h"#include "order_helper.h"#include "list.h"#include "ptr_list.h"#include "string.h"#include "string_list.h"#include "ref_counter.h"#include "iterators.h"#include "avltree.h"#include "map.h"#include "profiler.h"#include "guid.h"#include "byte_order_helper.h"#include "other.h"#include "chain_list_v2.h"#include "rcptr.h"#include "com_ptr_t.h"#include "string_conv.h"#include "stringNew.h"#include "pathUtils.h"#include "instance_tracker.h"#include "threads.h"Go to the source code of this file.
Defines | |
| #define | PFC_DLL_EXPORT |
| #define | PFC_MEMORY_SPACE_LIMIT ((t_uint64)1<<(sizeof(void*)*8-1)) |
| #define | PFC_ALLOCA_LIMIT (4096) |
| #define | INDEX_INVALID ((unsigned)(-1)) |
| #define | _PFC_WIDESTRING(_String) L ## _String |
| #define | PFC_WIDESTRING(_String) _PFC_WIDESTRING(_String) |
| #define | PFC_ASSERT(_Expression) ((void)0) |
| #define | PFC_ASSERT_SUCCESS(_Expression) (void)( (_Expression), 0) |
| #define | PFC_ASSERT_NO_EXCEPTION(_Expression) { _Expression; } |
| #define | NOVTABLE |
| #define | ASSUME(X) assert(X) |
| #define | PFC_DEPRECATE(X) |
| #define | PFC_CLASS_NOT_COPYABLE_EX(THISTYPE) PFC_CLASS_NOT_COPYABLE(THISTYPE,THISTYPE) |
| #define _PFC_WIDESTRING | ( | _String | ) | L ## _String |
| #define ASSUME | ( | X | ) | assert(X) |
| #define INDEX_INVALID ((unsigned)(-1)) |
| #define NOVTABLE |
| #define PFC_ALLOCA_LIMIT (4096) |
| #define PFC_ASSERT | ( | _Expression | ) | ((void)0) |
| #define PFC_ASSERT_NO_EXCEPTION | ( | _Expression | ) | { _Expression; } |
| #define PFC_ASSERT_SUCCESS | ( | _Expression | ) | (void)( (_Expression), 0) |
| #define PFC_CLASS_NOT_COPYABLE_EX | ( | THISTYPE | ) | PFC_CLASS_NOT_COPYABLE(THISTYPE,THISTYPE) |
| #define PFC_DEPRECATE | ( | X | ) |
| #define PFC_DLL_EXPORT |
| #define PFC_MEMORY_SPACE_LIMIT ((t_uint64)1<<(sizeof(void*)*8-1)) |
| #define PFC_WIDESTRING | ( | _String | ) | _PFC_WIDESTRING(_String) |
1.5.5