Foxit PDF Conversion SDK
extracted_comment.h
1
2114
/*
2115
Basic memory operations
2116
*/
2117
2118
/*
2119
Following base memory functions use default Foxit manager for current module
2120
*/
2121
2122
/*
2123
Macro definitions for File accessing modes
2124
*/
2125
2126
/*
2127
Byte string concatenation operation
2128
*/
2129
2130
/*
2131
Both side of the concatenation operator (+) can be:
2132
<ul>
2133
<li>
2134
A buffered byte string (const CFX_ByteString&);
2135
</li>
2136
<li>
2137
A non-buffered byte string (const CFX_ByteStringC&, a.k.a FX_BSTR);
2138
</li>
2139
<li>
2140
A zero-terminated C-style string (FX_LPCSTR);
2141
</li>
2142
<li>
2143
A single character or byte (FX_CHAR);
2144
</li>
2145
</ul>
2146
2147
*/
2148
2149
/*
2150
Wide string concatenation operation
2151
*/
2152
2153
/*
2154
Both side of the concatenation operator (+) can be:
2155
<ul>
2156
<li>
2157
A buffered wide string (const CFX_WideString&);
2158
</li>
2159
<li>
2160
A non-buffered wide string (const CFX_WideStringC&);
2161
</li>
2162
<li>
2163
A zero-terminated C-style wide string (FX_LPCWSTR);
2164
</li>
2165
<li>
2166
A single character (FX_WCHAR);
2167
</li>
2168
</ul>
2169
But you must have at least one CFX_WideString or CFX_WideStringC on one side.
2170
2171
*/
2172
2173
/*
2174
Wide string compare operation
2175
*/
2176
2177
/*
2178
Basic Unicode character attribute routines
2179
*/
2180
2181
/*
2182
text direction defines
2183
*/
2184
2185
/*
2186
Encode wide string into UTF-8 byte string
2187
*/
2188
2189
/*
2190
OS Defines
2191
*/
2192
2193
/*
2194
Compiler Defines
2195
*/
2196
2197
/*
2198
CPU Defines
2199
*/
2200
2201
/*
2202
Word Size Defines
2203
*/
2204
2205
/*
2206
Byte Order Defines
2207
*/
2208
2209
/*
2210
Target Defines
2211
*/
2212
2213
/*
2214
BASIC DATA TYPES
2215
*/
2216
2217
/*
2218
Byte string operations
2219
*/
2220
2221
/*
2222
File operations
2223
*/
2224
2225
/*
2226
Wide string operations
2227
*/
2228
2229
/*
2230
Memory block operations
2231
*/
2232
2233
/*
2234
Memory utilities
2235
*/
2236
2237
/*
2238
Math functions
2239
*/
@2024 Foxit Software Incorporated. All rights reserved.