[10219] | 1 | #ifndef __OS2WRAP_H__
|
---|
| 2 |
|
---|
| 3 | #ifdef INCL_DOSMEMMGR
|
---|
| 4 |
|
---|
| 5 | APIRET APIENTRY _DosAliasMem(PVOID pb, ULONG cb, PPVOID ppbAlias, ULONG fl);
|
---|
| 6 |
|
---|
| 7 | #undef DosAliasMem
|
---|
| 8 | #define DosAliasMem _DosAliasMem
|
---|
| 9 |
|
---|
| 10 | ULONG APIENTRY _DosAllocMem(PPVOID a, ULONG b, ULONG c);
|
---|
| 11 |
|
---|
| 12 | #undef DosAllocMem
|
---|
| 13 | #define DosAllocMem _DosAllocMem
|
---|
| 14 |
|
---|
| 15 | ULONG APIENTRY _DosAllocSharedMem(PPVOID a, PCSZ b, ULONG c, ULONG d);
|
---|
| 16 |
|
---|
| 17 | #undef DosAllocSharedMem
|
---|
| 18 | #define DosAllocSharedMem _DosAllocSharedMem
|
---|
| 19 |
|
---|
| 20 | ULONG APIENTRY _DosFreeMem(PVOID a);
|
---|
| 21 |
|
---|
| 22 | #undef DosFreeMem
|
---|
| 23 | #define DosFreeMem _DosFreeMem
|
---|
| 24 |
|
---|
| 25 | ULONG APIENTRY _DosGetNamedSharedMem(PPVOID a, PCSZ b, ULONG c);
|
---|
| 26 |
|
---|
| 27 | #undef DosGetNamedSharedMem
|
---|
| 28 | #define DosGetNamedSharedMem _DosGetNamedSharedMem
|
---|
| 29 |
|
---|
| 30 | ULONG APIENTRY _DosGetSharedMem(PVOID a, ULONG b);
|
---|
| 31 |
|
---|
| 32 | #undef DosGetSharedMem
|
---|
| 33 | #define DosGetSharedMem _DosGetSharedMem
|
---|
| 34 |
|
---|
| 35 | ULONG APIENTRY _DosGiveSharedMem(PVOID a, PID b, ULONG c);
|
---|
| 36 |
|
---|
| 37 | #undef DosGiveSharedMem
|
---|
| 38 | #define DosGiveSharedMem _DosGiveSharedMem
|
---|
| 39 |
|
---|
| 40 | ULONG APIENTRY _DosQueryMem(PVOID a, PULONG b, PULONG c);
|
---|
| 41 |
|
---|
| 42 | #undef DosQueryMem
|
---|
| 43 | #define DosQueryMem _DosQueryMem
|
---|
| 44 |
|
---|
| 45 | ULONG APIENTRY _DosSetMem(PVOID a, ULONG b, ULONG c);
|
---|
| 46 |
|
---|
| 47 | #undef DosSetMem
|
---|
| 48 | #define DosSetMem _DosSetMem
|
---|
| 49 |
|
---|
| 50 | ULONG APIENTRY _DosSubAllocMem(PVOID a, PPVOID b, ULONG c);
|
---|
| 51 |
|
---|
| 52 | #undef DosSubAllocMem
|
---|
| 53 | #define DosSubAllocMem _DosSubAllocMem
|
---|
| 54 |
|
---|
| 55 | ULONG APIENTRY _DosSubFreeMem(PVOID a, PVOID b, ULONG c);
|
---|
| 56 |
|
---|
| 57 | #undef DosSubFreeMem
|
---|
| 58 | #define DosSubFreeMem _DosSubFreeMem
|
---|
| 59 |
|
---|
| 60 | ULONG APIENTRY _DosSubSetMem(PVOID a, ULONG b, ULONG c);
|
---|
| 61 |
|
---|
| 62 | #undef DosSubSetMem
|
---|
| 63 | #define DosSubSetMem _DosSubSetMem
|
---|
| 64 |
|
---|
| 65 | ULONG APIENTRY _DosSubUnsetMem(PVOID a);
|
---|
| 66 |
|
---|
| 67 | #undef DosSubUnsetMem
|
---|
| 68 | #define DosSubUnsetMem _DosSubUnsetMem
|
---|
| 69 |
|
---|
| 70 | #endif
|
---|
| 71 | #ifdef INCL_DOSFILEMGR
|
---|
| 72 | ULONG APIENTRY _DosCancelLockRequest(HFILE a, PFILELOCK b);
|
---|
| 73 |
|
---|
| 74 | #undef DosCancelLockRequest
|
---|
| 75 | #define DosCancelLockRequest _DosCancelLockRequest
|
---|
| 76 |
|
---|
| 77 | ULONG APIENTRY _DosClose(HFILE a);
|
---|
| 78 |
|
---|
| 79 | #undef DosClose
|
---|
| 80 | #define DosClose _DosClose
|
---|
| 81 |
|
---|
| 82 | ULONG APIENTRY _DosCopy(PCSZ a, PCSZ b, ULONG c);
|
---|
| 83 |
|
---|
| 84 | #undef DosCopy
|
---|
| 85 | #define DosCopy _DosCopy
|
---|
| 86 |
|
---|
| 87 | ULONG APIENTRY _DosCreateDir(PCSZ a, PEAOP2 b);
|
---|
| 88 |
|
---|
| 89 | #undef DosCreateDir
|
---|
| 90 | #define DosCreateDir _DosCreateDir
|
---|
| 91 |
|
---|
| 92 | ULONG APIENTRY _DosDelete(PCSZ a);
|
---|
| 93 |
|
---|
| 94 | #undef DosDelete
|
---|
| 95 | #define DosDelete _DosDelete
|
---|
| 96 |
|
---|
| 97 | ULONG APIENTRY _DosDeleteDir(PCSZ a);
|
---|
| 98 |
|
---|
| 99 | #undef DosDeleteDir
|
---|
| 100 | #define DosDeleteDir _DosDeleteDir
|
---|
| 101 |
|
---|
| 102 | ULONG APIENTRY _DosDupHandle(HFILE a, PHFILE b);
|
---|
| 103 |
|
---|
| 104 | #undef DosDupHandle
|
---|
| 105 | #define DosDupHandle _DosDupHandle
|
---|
| 106 |
|
---|
| 107 | ULONG APIENTRY _DosEditName(ULONG a, PCSZ b, PCSZ c, PBYTE d, ULONG e);
|
---|
| 108 |
|
---|
| 109 | #undef DosEditName
|
---|
| 110 | #define DosEditName _DosEditName
|
---|
| 111 |
|
---|
| 112 | ULONG APIENTRY _DosEnumAttribute(ULONG a, PVOID b, ULONG c, PVOID d, ULONG e, PULONG f, ULONG g);
|
---|
| 113 |
|
---|
| 114 | #undef DosEnumAttribute
|
---|
| 115 | #define DosEnumAttribute _DosEnumAttribute
|
---|
| 116 |
|
---|
| 117 | ULONG APIENTRY _DosFindClose(HDIR a);
|
---|
| 118 |
|
---|
| 119 | #undef DosFindClose
|
---|
| 120 | #define DosFindClose _DosFindClose
|
---|
| 121 |
|
---|
| 122 | ULONG APIENTRY _DosFindFirst(PCSZ a, PHDIR b, ULONG c, PVOID d, ULONG e, PULONG f, ULONG g);
|
---|
| 123 |
|
---|
| 124 | #undef DosFindFirst
|
---|
| 125 | #define DosFindFirst _DosFindFirst
|
---|
| 126 |
|
---|
| 127 | ULONG APIENTRY _DosFindNext(HDIR a, PVOID b, ULONG c, PULONG d);
|
---|
| 128 |
|
---|
| 129 | #undef DosFindNext
|
---|
| 130 | #define DosFindNext _DosFindNext
|
---|
| 131 |
|
---|
| 132 | ULONG APIENTRY _DosForceDelete(PCSZ a);
|
---|
| 133 |
|
---|
| 134 | #undef DosForceDelete
|
---|
| 135 | #define DosForceDelete _DosForceDelete
|
---|
| 136 |
|
---|
| 137 | ULONG APIENTRY _DosFSAttach(PCSZ a, PCSZ b, PVOID c, ULONG d, ULONG e);
|
---|
| 138 |
|
---|
| 139 | #undef DosFSAttach
|
---|
| 140 | #define DosFSAttach _DosFSAttach
|
---|
| 141 |
|
---|
| 142 | ULONG APIENTRY _DosFSCtl(PVOID a, ULONG b, PULONG c, PVOID d, ULONG e, PULONG f, ULONG g, PCSZ h, HFILE i, ULONG j);
|
---|
| 143 |
|
---|
| 144 | #undef DosFSCtl
|
---|
| 145 | #define DosFSCtl _DosFSCtl
|
---|
| 146 |
|
---|
| 147 | ULONG APIENTRY _DosMove(PCSZ a, PCSZ b);
|
---|
| 148 |
|
---|
| 149 | #undef DosMove
|
---|
| 150 | #define DosMove _DosMove
|
---|
| 151 |
|
---|
| 152 | ULONG APIENTRY _DosOpen(PCSZ a, PHFILE b, PULONG c, ULONG d, ULONG e, ULONG f, ULONG g, PEAOP2 h);
|
---|
| 153 |
|
---|
| 154 | #undef DosOpen
|
---|
| 155 | #define DosOpen _DosOpen
|
---|
| 156 |
|
---|
| 157 | ULONG APIENTRY _DosProtectClose(HFILE a, FHLOCK b);
|
---|
| 158 |
|
---|
| 159 | #undef DosProtectClose
|
---|
| 160 | #define DosProtectClose _DosProtectClose
|
---|
| 161 |
|
---|
| 162 | ULONG APIENTRY _DosProtectEnumAttribute(ULONG a, PVOID b, ULONG c, PVOID d, ULONG e, PULONG f, ULONG g, FHLOCK h);
|
---|
| 163 |
|
---|
| 164 | #undef DosProtectEnumAttribute
|
---|
| 165 | #define DosProtectEnumAttribute _DosProtectEnumAttribute
|
---|
| 166 |
|
---|
| 167 | ULONG APIENTRY _DosProtectOpen(PCSZ a, PHFILE b, PULONG c, ULONG d, ULONG e, ULONG f, ULONG g, PEAOP2 h, PFHLOCK i);
|
---|
| 168 |
|
---|
| 169 | #undef DosProtectOpen
|
---|
| 170 | #define DosProtectOpen _DosProtectOpen
|
---|
| 171 |
|
---|
| 172 | ULONG APIENTRY _DosProtectQueryFHState(HFILE a, PULONG b, FHLOCK c);
|
---|
| 173 |
|
---|
| 174 | #undef DosProtectQueryFHState
|
---|
| 175 | #define DosProtectQueryFHState _DosProtectQueryFHState
|
---|
| 176 |
|
---|
| 177 | ULONG APIENTRY _DosProtectQueryFileInfo(HFILE a, ULONG b, PVOID c, ULONG d, FHLOCK e);
|
---|
| 178 |
|
---|
| 179 | #undef DosProtectQueryFileInfo
|
---|
| 180 | #define DosProtectQueryFileInfo _DosProtectQueryFileInfo
|
---|
| 181 |
|
---|
| 182 | ULONG APIENTRY _DosProtectRead(HFILE a, PVOID b, ULONG c, PULONG d, FHLOCK e);
|
---|
| 183 |
|
---|
| 184 | #undef DosProtectRead
|
---|
| 185 | #define DosProtectRead _DosProtectRead
|
---|
| 186 |
|
---|
| 187 | ULONG APIENTRY _DosProtectSetFHState(HFILE a, ULONG b, FHLOCK c);
|
---|
| 188 |
|
---|
| 189 | #undef DosProtectSetFHState
|
---|
| 190 | #define DosProtectSetFHState _DosProtectSetFHState
|
---|
| 191 |
|
---|
| 192 | ULONG APIENTRY _DosProtectSetFileInfo(HFILE a, ULONG b, PVOID c, ULONG d, FHLOCK e);
|
---|
| 193 |
|
---|
| 194 | #undef DosProtectSetFileInfo
|
---|
| 195 | #define DosProtectSetFileInfo _DosProtectSetFileInfo
|
---|
| 196 |
|
---|
| 197 | ULONG APIENTRY _DosProtectSetFileLocks(HFILE a, PFILELOCK b, PFILELOCK c, ULONG d, ULONG e, FHLOCK f);
|
---|
| 198 |
|
---|
| 199 | #undef DosProtectSetFileLocks
|
---|
| 200 | #define DosProtectSetFileLocks _DosProtectSetFileLocks
|
---|
| 201 |
|
---|
| 202 | ULONG APIENTRY _DosProtectSetFilePtr(HFILE a, LONG b, ULONG c, PULONG d, FHLOCK e);
|
---|
| 203 |
|
---|
| 204 | #undef DosProtectSetFilePtr
|
---|
| 205 | #define DosProtectSetFilePtr _DosProtectSetFilePtr
|
---|
| 206 |
|
---|
| 207 | ULONG APIENTRY _DosProtectSetFileSize(HFILE a, ULONG b, FHLOCK c);
|
---|
| 208 |
|
---|
| 209 | #undef DosProtectSetFileSize
|
---|
| 210 | #define DosProtectSetFileSize _DosProtectSetFileSize
|
---|
| 211 |
|
---|
| 212 | ULONG APIENTRY _DosProtectWrite(HFILE a, PVOID b, ULONG c, PULONG d, FHLOCK e);
|
---|
| 213 |
|
---|
| 214 | #undef DosProtectWrite
|
---|
| 215 | #define DosProtectWrite _DosProtectWrite
|
---|
| 216 |
|
---|
| 217 | ULONG APIENTRY _DosQueryCurrentDir(ULONG a, PBYTE b, PULONG c);
|
---|
| 218 |
|
---|
| 219 | #undef DosQueryCurrentDir
|
---|
| 220 | #define DosQueryCurrentDir _DosQueryCurrentDir
|
---|
| 221 |
|
---|
| 222 | ULONG APIENTRY _DosQueryCurrentDisk(PULONG a, PULONG b);
|
---|
| 223 |
|
---|
| 224 | #undef DosQueryCurrentDisk
|
---|
| 225 | #define DosQueryCurrentDisk _DosQueryCurrentDisk
|
---|
| 226 |
|
---|
| 227 | ULONG APIENTRY _DosQueryFHState(HFILE a, PULONG b);
|
---|
| 228 |
|
---|
| 229 | #undef DosQueryFHState
|
---|
| 230 | #define DosQueryFHState _DosQueryFHState
|
---|
| 231 |
|
---|
| 232 | ULONG APIENTRY _DosQueryFileInfo(HFILE a, ULONG b, PVOID c, ULONG d);
|
---|
| 233 |
|
---|
| 234 | #undef DosQueryFileInfo
|
---|
| 235 | #define DosQueryFileInfo _DosQueryFileInfo
|
---|
| 236 |
|
---|
| 237 | ULONG APIENTRY _DosQueryFSAttach(PCSZ a, ULONG b, ULONG c, PFSQBUFFER2 d, PULONG e);
|
---|
| 238 |
|
---|
| 239 | #undef DosQueryFSAttach
|
---|
| 240 | #define DosQueryFSAttach _DosQueryFSAttach
|
---|
| 241 |
|
---|
| 242 | ULONG APIENTRY _DosQueryFSInfo(ULONG a, ULONG b, PVOID c, ULONG d);
|
---|
| 243 |
|
---|
| 244 | #undef DosQueryFSInfo
|
---|
| 245 | #define DosQueryFSInfo _DosQueryFSInfo
|
---|
| 246 |
|
---|
| 247 | ULONG APIENTRY _DosQueryHType(HFILE a, PULONG b, PULONG c);
|
---|
| 248 |
|
---|
| 249 | #undef DosQueryHType
|
---|
| 250 | #define DosQueryHType _DosQueryHType
|
---|
| 251 |
|
---|
| 252 | ULONG APIENTRY _DosQueryPathInfo(PCSZ a, ULONG b, PVOID c, ULONG d);
|
---|
| 253 |
|
---|
| 254 | #undef DosQueryPathInfo
|
---|
| 255 | #define DosQueryPathInfo _DosQueryPathInfo
|
---|
| 256 |
|
---|
| 257 | ULONG APIENTRY _DosQueryVerify(PBOOL32 a);
|
---|
| 258 |
|
---|
| 259 | #undef DosQueryVerify
|
---|
| 260 | #define DosQueryVerify _DosQueryVerify
|
---|
| 261 |
|
---|
| 262 | ULONG APIENTRY _DosRead(HFILE a, PVOID b, ULONG c, PULONG d);
|
---|
| 263 |
|
---|
| 264 | #undef DosRead
|
---|
| 265 | #define DosRead _DosRead
|
---|
| 266 |
|
---|
| 267 | ULONG APIENTRY _DosResetBuffer(HFILE a);
|
---|
| 268 |
|
---|
| 269 | #undef DosResetBuffer
|
---|
| 270 | #define DosResetBuffer _DosResetBuffer
|
---|
| 271 |
|
---|
| 272 | ULONG APIENTRY _DosSetCurrentDir(PCSZ a);
|
---|
| 273 |
|
---|
| 274 | #undef DosSetCurrentDir
|
---|
| 275 | #define DosSetCurrentDir _DosSetCurrentDir
|
---|
| 276 |
|
---|
| 277 | ULONG APIENTRY _DosSetDefaultDisk(ULONG a);
|
---|
| 278 |
|
---|
| 279 | #undef DosSetDefaultDisk
|
---|
| 280 | #define DosSetDefaultDisk _DosSetDefaultDisk
|
---|
| 281 |
|
---|
| 282 | ULONG APIENTRY _DosSetFHState(HFILE a, ULONG b);
|
---|
| 283 |
|
---|
| 284 | #undef DosSetFHState
|
---|
| 285 | #define DosSetFHState _DosSetFHState
|
---|
| 286 |
|
---|
| 287 | ULONG APIENTRY _DosSetFileInfo(HFILE a, ULONG b, PVOID c, ULONG d);
|
---|
| 288 |
|
---|
| 289 | #undef DosSetFileInfo
|
---|
| 290 | #define DosSetFileInfo _DosSetFileInfo
|
---|
| 291 |
|
---|
| 292 | ULONG APIENTRY _DosSetFileLocks(HFILE a, PFILELOCK b, PFILELOCK c, ULONG d, ULONG e);
|
---|
| 293 |
|
---|
| 294 | #undef DosSetFileLocks
|
---|
| 295 | #define DosSetFileLocks _DosSetFileLocks
|
---|
| 296 |
|
---|
| 297 | ULONG APIENTRY _DosSetFilePtr(HFILE a, LONG b, ULONG c, PULONG d);
|
---|
| 298 |
|
---|
| 299 | #undef DosSetFilePtr
|
---|
| 300 | #define DosSetFilePtr _DosSetFilePtr
|
---|
| 301 |
|
---|
| 302 | ULONG APIENTRY _DosSetFileSize(HFILE a, ULONG b);
|
---|
| 303 |
|
---|
| 304 | #undef DosSetFileSize
|
---|
| 305 | #define DosSetFileSize _DosSetFileSize
|
---|
| 306 |
|
---|
| 307 | ULONG APIENTRY _DosSetFSInfo(ULONG a, ULONG b, PVOID c, ULONG d);
|
---|
| 308 |
|
---|
| 309 | #undef DosSetFSInfo
|
---|
| 310 | #define DosSetFSInfo _DosSetFSInfo
|
---|
| 311 |
|
---|
| 312 | ULONG APIENTRY _DosSetMaxFH(ULONG a);
|
---|
| 313 |
|
---|
| 314 | #undef DosSetMaxFH
|
---|
| 315 | #define DosSetMaxFH _DosSetMaxFH
|
---|
| 316 |
|
---|
| 317 | ULONG APIENTRY _DosSetPathInfo(PCSZ a, ULONG b, PVOID c, ULONG d, ULONG e);
|
---|
| 318 |
|
---|
| 319 | #undef DosSetPathInfo
|
---|
| 320 | #define DosSetPathInfo _DosSetPathInfo
|
---|
| 321 |
|
---|
| 322 | ULONG APIENTRY _DosSetRelMaxFH(PLONG a, PULONG b);
|
---|
| 323 |
|
---|
| 324 | #undef DosSetRelMaxFH
|
---|
| 325 | #define DosSetRelMaxFH _DosSetRelMaxFH
|
---|
| 326 |
|
---|
| 327 | ULONG APIENTRY _DosSetVerify(BOOL32 a);
|
---|
| 328 |
|
---|
| 329 | #undef DosSetVerify
|
---|
| 330 | #define DosSetVerify _DosSetVerify
|
---|
| 331 |
|
---|
| 332 | ULONG APIENTRY _DosShutdown(ULONG a);
|
---|
| 333 |
|
---|
| 334 | #undef DosShutdown
|
---|
| 335 | #define DosShutdown _DosShutdown
|
---|
| 336 |
|
---|
| 337 | ULONG APIENTRY _DosWrite(HFILE a, PVOID b, ULONG c, PULONG d);
|
---|
| 338 |
|
---|
| 339 | #undef DosWrite
|
---|
| 340 | #define DosWrite _DosWrite
|
---|
| 341 |
|
---|
| 342 | #endif
|
---|
| 343 | #ifdef INCL_DOSMISC
|
---|
| 344 | ULONG APIENTRY _DosSearchPath(ULONG a, PCSZ b, PCSZ c, PBYTE d, ULONG e);
|
---|
| 345 |
|
---|
| 346 | #undef DosSearchPath
|
---|
| 347 | #define DosSearchPath _DosSearchPath
|
---|
| 348 |
|
---|
| 349 | ULONG APIENTRY _DosError(ULONG error);
|
---|
| 350 |
|
---|
| 351 | #undef DosError
|
---|
| 352 | #define DosError _DosError
|
---|
| 353 |
|
---|
| 354 | #endif
|
---|
| 355 | #ifdef INCL_DOSDEVICES
|
---|
| 356 | ULONG APIENTRY _DosDevConfig(PVOID a, ULONG b);
|
---|
| 357 |
|
---|
| 358 | #undef DosDevConfig
|
---|
| 359 | #define DosDevConfig _DosDevConfig
|
---|
| 360 |
|
---|
| 361 | ULONG APIENTRY _DosDevIOCtl(HFILE a, ULONG b, ULONG c, PVOID d, ULONG e, PULONG f, PVOID g, ULONG h, PULONG i);
|
---|
| 362 |
|
---|
| 363 | #undef DosDevIOCtl
|
---|
| 364 | #define DosDevIOCtl _DosDevIOCtl
|
---|
| 365 |
|
---|
| 366 | ULONG APIENTRY _DosPhysicalDisk(ULONG a, PVOID b, ULONG c, PVOID d, ULONG e);
|
---|
| 367 |
|
---|
| 368 | #undef DosPhysicalDisk
|
---|
| 369 | #define DosPhysicalDisk _DosPhysicalDisk
|
---|
| 370 |
|
---|
| 371 | #endif
|
---|
| 372 | #ifdef INCL_DOSNLS
|
---|
| 373 | ULONG APIENTRY _DosMapCase(ULONG a, PCOUNTRYCODE b, PCHAR c);
|
---|
| 374 |
|
---|
| 375 | #undef DosMapCase
|
---|
| 376 | #define DosMapCase _DosMapCase
|
---|
| 377 |
|
---|
| 378 | ULONG APIENTRY _DosQueryCollate(ULONG a, PCOUNTRYCODE b, PCHAR c, PULONG d);
|
---|
| 379 |
|
---|
| 380 | #undef DosQueryCollate
|
---|
| 381 | #define DosQueryCollate _DosQueryCollate
|
---|
| 382 |
|
---|
| 383 | ULONG APIENTRY _DosQueryCp(ULONG a, PULONG b, PULONG c);
|
---|
| 384 |
|
---|
| 385 | #undef DosQueryCp
|
---|
| 386 | #define DosQueryCp _DosQueryCp
|
---|
| 387 |
|
---|
| 388 | ULONG APIENTRY _DosQueryCtryInfo(ULONG a, PCOUNTRYCODE b, PCOUNTRYINFO c, PULONG d);
|
---|
| 389 |
|
---|
| 390 | #undef DosQueryCtryInfo
|
---|
| 391 | #define DosQueryCtryInfo _DosQueryCtryInfo
|
---|
| 392 |
|
---|
| 393 | ULONG APIENTRY _DosQueryDBCSEnv(ULONG a, PCOUNTRYCODE b, PCHAR c);
|
---|
| 394 |
|
---|
| 395 | #undef DosQueryDBCSEnv
|
---|
| 396 | #define DosQueryDBCSEnv _DosQueryDBCSEnv
|
---|
| 397 |
|
---|
| 398 | ULONG APIENTRY _DosSetProcessCp(ULONG a);
|
---|
| 399 |
|
---|
| 400 | #undef DosSetProcessCp
|
---|
| 401 | #define DosSetProcessCp _DosSetProcessCp
|
---|
| 402 |
|
---|
| 403 | #endif
|
---|
| 404 | #ifdef INCL_DOSMODULEMGR
|
---|
| 405 | ULONG APIENTRY _DosFreeModule(HMODULE a);
|
---|
| 406 |
|
---|
| 407 | #undef DosFreeModule
|
---|
| 408 | #define DosFreeModule _DosFreeModule
|
---|
| 409 |
|
---|
| 410 | ULONG APIENTRY _DosLoadModule(PSZ a, ULONG b, PCSZ c, PHMODULE d);
|
---|
| 411 |
|
---|
| 412 | #undef DosLoadModule
|
---|
| 413 | #define DosLoadModule _DosLoadModule
|
---|
| 414 |
|
---|
| 415 | ULONG APIENTRY _DosQueryModuleHandle(PCSZ a, PHMODULE b);
|
---|
| 416 |
|
---|
| 417 | #undef DosQueryModuleHandle
|
---|
| 418 | #define DosQueryModuleHandle _DosQueryModuleHandle
|
---|
| 419 |
|
---|
| 420 | ULONG APIENTRY _DosQueryModuleName(HMODULE a, ULONG b, PCHAR c);
|
---|
| 421 |
|
---|
| 422 | #undef DosQueryModuleName
|
---|
| 423 | #define DosQueryModuleName _DosQueryModuleName
|
---|
| 424 |
|
---|
| 425 | ULONG APIENTRY _DosQueryProcAddr(HMODULE a, ULONG b, PCSZ c, PFN *d);
|
---|
| 426 |
|
---|
| 427 | #undef DosQueryProcAddr
|
---|
| 428 | #define DosQueryProcAddr _DosQueryProcAddr
|
---|
| 429 |
|
---|
| 430 | ULONG APIENTRY _DosQueryProcType(HMODULE a, ULONG b, PCSZ c, PULONG d);
|
---|
| 431 |
|
---|
| 432 | #undef DosQueryProcType
|
---|
| 433 | #define DosQueryProcType _DosQueryProcType
|
---|
| 434 |
|
---|
| 435 | #endif
|
---|
| 436 | #ifdef INCL_DOSRESOURCES
|
---|
| 437 | ULONG APIENTRY _DosFreeResource(PVOID a);
|
---|
| 438 |
|
---|
| 439 | #undef DosFreeResource
|
---|
| 440 | #define DosFreeResource _DosFreeResource
|
---|
| 441 |
|
---|
| 442 | ULONG APIENTRY _DosGetResource(HMODULE a, ULONG b, ULONG c, PPVOID d);
|
---|
| 443 |
|
---|
| 444 | #undef DosGetResource
|
---|
| 445 | #define DosGetResource _DosGetResource
|
---|
| 446 |
|
---|
| 447 | ULONG APIENTRY _DosQueryResourceSize(HMODULE a, ULONG b, ULONG c, PULONG d);
|
---|
| 448 |
|
---|
| 449 | #undef DosQueryResourceSize
|
---|
| 450 | #define DosQueryResourceSize _DosQueryResourceSize
|
---|
| 451 |
|
---|
| 452 | #endif
|
---|
| 453 | #ifdef INCL_DOSPROCESS
|
---|
| 454 | ULONG APIENTRY _DosBeep(ULONG a, ULONG b);
|
---|
| 455 |
|
---|
| 456 | #undef DosBeep
|
---|
| 457 | #define DosBeep _DosBeep
|
---|
| 458 |
|
---|
| 459 | VOID APIENTRY _DosExit(ULONG a, ULONG b);
|
---|
| 460 |
|
---|
| 461 | #undef DosExit
|
---|
| 462 | #define DosExit _DosExit
|
---|
| 463 |
|
---|
| 464 | ULONG APIENTRY _DosAllocThreadLocalMemory(ULONG a, PULONG *b);
|
---|
| 465 |
|
---|
| 466 | #undef DosAllocThreadLocalMemory
|
---|
| 467 | #define DosAllocThreadLocalMemory _DosAllocThreadLocalMemory
|
---|
| 468 |
|
---|
| 469 | ULONG APIENTRY _DosCreateThread(PTID a, PFNTHREAD b, ULONG c, ULONG d, ULONG e);
|
---|
| 470 |
|
---|
| 471 | #undef DosCreateThread
|
---|
| 472 | #define DosCreateThread _DosCreateThread
|
---|
| 473 |
|
---|
| 474 | ULONG APIENTRY _DosEnterCritSec();
|
---|
| 475 |
|
---|
| 476 | #undef DosEnterCritSec
|
---|
| 477 | #define DosEnterCritSec _DosEnterCritSec
|
---|
| 478 |
|
---|
| 479 | ULONG APIENTRY _DosExecPgm(PCHAR a, LONG b, ULONG c, PCSZ d, PCSZ e, PRESULTCODES f, PCSZ g);
|
---|
| 480 |
|
---|
| 481 | #undef DosExecPgm
|
---|
| 482 | #define DosExecPgm _DosExecPgm
|
---|
| 483 |
|
---|
| 484 | ULONG APIENTRY _DosExitCritSec();
|
---|
| 485 |
|
---|
| 486 | #undef DosExitCritSec
|
---|
| 487 | #define DosExitCritSec _DosExitCritSec
|
---|
| 488 |
|
---|
| 489 | ULONG APIENTRY _DosExitList(ULONG a, PFNEXITLIST b);
|
---|
| 490 |
|
---|
| 491 | #undef DosExitList
|
---|
| 492 | #define DosExitList _DosExitList
|
---|
| 493 |
|
---|
| 494 | ULONG APIENTRY _DosFreeThreadLocalMemory(ULONG *a);
|
---|
| 495 |
|
---|
| 496 | #undef DosFreeThreadLocalMemory
|
---|
| 497 | #define DosFreeThreadLocalMemory _DosFreeThreadLocalMemory
|
---|
| 498 |
|
---|
| 499 | ULONG APIENTRY _DosGetInfoBlocks(PTIB *a, PPIB *b);
|
---|
| 500 |
|
---|
| 501 | #undef DosGetInfoBlocks
|
---|
| 502 | #define DosGetInfoBlocks _DosGetInfoBlocks
|
---|
| 503 |
|
---|
| 504 | ULONG APIENTRY _DosKillProcess(ULONG a, PID b);
|
---|
| 505 |
|
---|
| 506 | #undef DosKillProcess
|
---|
| 507 | #define DosKillProcess _DosKillProcess
|
---|
| 508 |
|
---|
| 509 | ULONG APIENTRY _DosKillThread(TID a);
|
---|
| 510 |
|
---|
| 511 | #undef DosKillThread
|
---|
| 512 | #define DosKillThread _DosKillThread
|
---|
| 513 |
|
---|
| 514 | ULONG APIENTRY _DosResumeThread(TID a);
|
---|
| 515 |
|
---|
| 516 | #undef DosResumeThread
|
---|
| 517 | #define DosResumeThread _DosResumeThread
|
---|
| 518 |
|
---|
| 519 | ULONG APIENTRY _DosSetPriority(ULONG a, ULONG b, LONG c, ULONG d);
|
---|
| 520 |
|
---|
| 521 | #undef DosSetPriority
|
---|
| 522 | #define DosSetPriority _DosSetPriority
|
---|
| 523 |
|
---|
| 524 | ULONG APIENTRY _DosSleep(ULONG a);
|
---|
| 525 |
|
---|
| 526 | #undef DosSleep
|
---|
| 527 | #define DosSleep _DosSleep
|
---|
| 528 |
|
---|
| 529 | ULONG APIENTRY _DosSuspendThread(TID a);
|
---|
| 530 |
|
---|
| 531 | #undef DosSuspendThread
|
---|
| 532 | #define DosSuspendThread _DosSuspendThread
|
---|
| 533 |
|
---|
| 534 | ULONG APIENTRY _DosWaitChild(ULONG a, ULONG b, PRESULTCODES c, PPID d, PID e);
|
---|
| 535 |
|
---|
| 536 | #undef DosWaitChild
|
---|
| 537 | #define DosWaitChild _DosWaitChild
|
---|
| 538 |
|
---|
| 539 | ULONG APIENTRY _DosWaitThread(PTID a, ULONG b);
|
---|
| 540 |
|
---|
| 541 | #undef DosWaitThread
|
---|
| 542 | #define DosWaitThread _DosWaitThread
|
---|
| 543 |
|
---|
| 544 | #endif
|
---|
| 545 |
|
---|
| 546 | #ifdef INCL_DOSSESMGR
|
---|
| 547 | ULONG APIENTRY _DosQueryAppType(PCSZ a, PULONG b);
|
---|
| 548 |
|
---|
| 549 | #undef DosQueryAppType
|
---|
| 550 | #define DosQueryAppType _DosQueryAppType
|
---|
| 551 |
|
---|
| 552 | ULONG APIENTRY _DosSelectSession(ULONG a);
|
---|
| 553 |
|
---|
| 554 | #undef DosSelectSession
|
---|
| 555 | #define DosSelectSession _DosSelectSession
|
---|
| 556 |
|
---|
| 557 | ULONG APIENTRY _DosSetSession(ULONG a, PSTATUSDATA b);
|
---|
| 558 |
|
---|
| 559 | #undef DosSetSession
|
---|
| 560 | #define DosSetSession _DosSetSession
|
---|
| 561 |
|
---|
| 562 | ULONG APIENTRY _DosStartSession(PSTARTDATA a, PULONG b, PPID c);
|
---|
| 563 |
|
---|
| 564 | #undef DosStartSession
|
---|
| 565 | #define DosStartSession _DosStartSession
|
---|
| 566 |
|
---|
| 567 | ULONG APIENTRY _DosStopSession(ULONG a, ULONG b);
|
---|
| 568 |
|
---|
| 569 | #undef DosStopSession
|
---|
| 570 | #define DosStopSession _DosStopSession
|
---|
| 571 |
|
---|
| 572 | #endif
|
---|
| 573 | #ifdef INCL_DOSSEMAPHORES
|
---|
| 574 | ULONG APIENTRY _DosCloseEventSem(HEV a);
|
---|
| 575 |
|
---|
| 576 | #undef DosCloseEventSem
|
---|
| 577 | #define DosCloseEventSem _DosCloseEventSem
|
---|
| 578 |
|
---|
| 579 | ULONG APIENTRY _DosCreateEventSem(PCSZ a, PHEV b, ULONG c, BOOL32 d);
|
---|
| 580 |
|
---|
| 581 | #undef DosCreateEventSem
|
---|
| 582 | #define DosCreateEventSem _DosCreateEventSem
|
---|
| 583 |
|
---|
| 584 | ULONG APIENTRY _DosOpenEventSem(PCSZ a, PHEV b);
|
---|
| 585 |
|
---|
| 586 | #undef DosOpenEventSem
|
---|
| 587 | #define DosOpenEventSem _DosOpenEventSem
|
---|
| 588 |
|
---|
| 589 | ULONG APIENTRY _DosPostEventSem(HEV a);
|
---|
| 590 |
|
---|
| 591 | #undef DosPostEventSem
|
---|
| 592 | #define DosPostEventSem _DosPostEventSem
|
---|
| 593 |
|
---|
| 594 | ULONG APIENTRY _DosQueryEventSem(HEV a, PULONG b);
|
---|
| 595 |
|
---|
| 596 | #undef DosQueryEventSem
|
---|
| 597 | #define DosQueryEventSem _DosQueryEventSem
|
---|
| 598 |
|
---|
| 599 | ULONG APIENTRY _DosResetEventSem(HEV a, PULONG b);
|
---|
| 600 |
|
---|
| 601 | #undef DosResetEventSem
|
---|
| 602 | #define DosResetEventSem _DosResetEventSem
|
---|
| 603 |
|
---|
| 604 | ULONG APIENTRY _DosWaitEventSem(HEV a, ULONG b);
|
---|
| 605 |
|
---|
| 606 | #undef DosWaitEventSem
|
---|
| 607 | #define DosWaitEventSem _DosWaitEventSem
|
---|
| 608 |
|
---|
| 609 | ULONG APIENTRY _DosCloseMutexSem(HMTX a);
|
---|
| 610 |
|
---|
| 611 | #undef DosCloseMutexSem
|
---|
| 612 | #define DosCloseMutexSem _DosCloseMutexSem
|
---|
| 613 |
|
---|
| 614 | ULONG APIENTRY _DosCreateMutexSem(PCSZ a, PHMTX b, ULONG c, BOOL32 d);
|
---|
| 615 |
|
---|
| 616 | #undef DosCreateMutexSem
|
---|
| 617 | #define DosCreateMutexSem _DosCreateMutexSem
|
---|
| 618 |
|
---|
| 619 | ULONG APIENTRY _DosOpenMutexSem(PCSZ a, PHMTX b);
|
---|
| 620 |
|
---|
| 621 | #undef DosOpenMutexSem
|
---|
| 622 | #define DosOpenMutexSem _DosOpenMutexSem
|
---|
| 623 |
|
---|
| 624 | ULONG APIENTRY _DosQueryMutexSem(HMTX a, PPID b, PTID c, PULONG d);
|
---|
| 625 |
|
---|
| 626 | #undef DosQueryMutexSem
|
---|
| 627 | #define DosQueryMutexSem _DosQueryMutexSem
|
---|
| 628 |
|
---|
| 629 | ULONG APIENTRY _DosReleaseMutexSem(HMTX a);
|
---|
| 630 |
|
---|
| 631 | #undef DosReleaseMutexSem
|
---|
| 632 | #define DosReleaseMutexSem _DosReleaseMutexSem
|
---|
| 633 |
|
---|
| 634 | ULONG APIENTRY _DosRequestMutexSem(HMTX a, ULONG b);
|
---|
| 635 |
|
---|
| 636 | #undef DosRequestMutexSem
|
---|
| 637 | #define DosRequestMutexSem _DosRequestMutexSem
|
---|
| 638 |
|
---|
| 639 | ULONG APIENTRY _DosAddMuxWaitSem(HMUX a, PSEMRECORD b);
|
---|
| 640 |
|
---|
| 641 | #undef DosAddMuxWaitSem
|
---|
| 642 | #define DosAddMuxWaitSem _DosAddMuxWaitSem
|
---|
| 643 |
|
---|
| 644 | ULONG APIENTRY _DosCloseMuxWaitSem(HMUX a);
|
---|
| 645 |
|
---|
| 646 | #undef DosCloseMuxWaitSem
|
---|
| 647 | #define DosCloseMuxWaitSem _DosCloseMuxWaitSem
|
---|
| 648 |
|
---|
| 649 | ULONG APIENTRY _DosCreateMuxWaitSem(PCSZ a, PHMUX b, ULONG c, PSEMRECORD d, ULONG e);
|
---|
| 650 |
|
---|
| 651 | #undef DosCreateMuxWaitSem
|
---|
| 652 | #define DosCreateMuxWaitSem _DosCreateMuxWaitSem
|
---|
| 653 |
|
---|
| 654 | ULONG APIENTRY _DosDeleteMuxWaitSem(HMUX a, HSEM b);
|
---|
| 655 |
|
---|
| 656 | #undef DosDeleteMuxWaitSem
|
---|
| 657 | #define DosDeleteMuxWaitSem _DosDeleteMuxWaitSem
|
---|
| 658 |
|
---|
| 659 | ULONG APIENTRY _DosOpenMuxWaitSem(PCSZ a, PHMUX b);
|
---|
| 660 |
|
---|
| 661 | #undef DosOpenMuxWaitSem
|
---|
| 662 | #define DosOpenMuxWaitSem _DosOpenMuxWaitSem
|
---|
| 663 |
|
---|
| 664 | ULONG APIENTRY _DosQueryMuxWaitSem(HMUX a, PULONG b, PSEMRECORD c, PULONG d);
|
---|
| 665 |
|
---|
| 666 | #undef DosQueryMuxWaitSem
|
---|
| 667 | #define DosQueryMuxWaitSem _DosQueryMuxWaitSem
|
---|
| 668 |
|
---|
| 669 | ULONG APIENTRY _DosWaitMuxWaitSem(HMUX a, ULONG b, PULONG c);
|
---|
| 670 |
|
---|
| 671 | #undef DosWaitMuxWaitSem
|
---|
| 672 | #define DosWaitMuxWaitSem _DosWaitMuxWaitSem
|
---|
| 673 |
|
---|
| 674 | #endif
|
---|
| 675 | #ifdef INCL_DOSNMPIPES
|
---|
| 676 | ULONG APIENTRY _DosCallNPipe(PCSZ a, PVOID b, ULONG c, PVOID d, ULONG e, PULONG f, ULONG g);
|
---|
| 677 |
|
---|
| 678 | #undef DosCallNPipe
|
---|
| 679 | #define DosCallNPipe _DosCallNPipe
|
---|
| 680 |
|
---|
| 681 | ULONG APIENTRY _DosConnectNPipe(HPIPE a);
|
---|
| 682 |
|
---|
| 683 | #undef DosConnectNPipe
|
---|
| 684 | #define DosConnectNPipe _DosConnectNPipe
|
---|
| 685 |
|
---|
| 686 | ULONG APIENTRY _DosCreateNPipe(PCSZ a, PHPIPE b, ULONG c, ULONG d, ULONG e, ULONG f, ULONG g);
|
---|
| 687 |
|
---|
| 688 | #undef DosCreateNPipe
|
---|
| 689 | #define DosCreateNPipe _DosCreateNPipe
|
---|
| 690 |
|
---|
| 691 | ULONG APIENTRY _DosDisConnectNPipe(HPIPE a);
|
---|
| 692 |
|
---|
| 693 | #undef DosDisConnectNPipe
|
---|
| 694 | #define DosDisConnectNPipe _DosDisConnectNPipe
|
---|
| 695 |
|
---|
| 696 | ULONG APIENTRY _DosPeekNPipe(HPIPE a, PVOID b, ULONG c, PULONG d, PAVAILDATA e, PULONG f);
|
---|
| 697 |
|
---|
| 698 | #undef DosPeekNPipe
|
---|
| 699 | #define DosPeekNPipe _DosPeekNPipe
|
---|
| 700 |
|
---|
| 701 | ULONG APIENTRY _DosQueryNPHState(HPIPE a, PULONG b);
|
---|
| 702 |
|
---|
| 703 | #undef DosQueryNPHState
|
---|
| 704 | #define DosQueryNPHState _DosQueryNPHState
|
---|
| 705 |
|
---|
| 706 | ULONG APIENTRY _DosQueryNPipeInfo(HPIPE a, ULONG b, PVOID c, ULONG d);
|
---|
| 707 |
|
---|
| 708 | #undef DosQueryNPipeInfo
|
---|
| 709 | #define DosQueryNPipeInfo _DosQueryNPipeInfo
|
---|
| 710 |
|
---|
| 711 | ULONG APIENTRY _DosQueryNPipeSemState(HSEM a, PPIPESEMSTATE b, ULONG c);
|
---|
| 712 |
|
---|
| 713 | #undef DosQueryNPipeSemState
|
---|
| 714 | #define DosQueryNPipeSemState _DosQueryNPipeSemState
|
---|
| 715 |
|
---|
| 716 | ULONG APIENTRY _DosSetNPHState(HPIPE a, ULONG b);
|
---|
| 717 |
|
---|
| 718 | #undef DosSetNPHState
|
---|
| 719 | #define DosSetNPHState _DosSetNPHState
|
---|
| 720 |
|
---|
| 721 | ULONG APIENTRY _DosSetNPipeSem(HPIPE a, HSEM b, ULONG c);
|
---|
| 722 |
|
---|
| 723 | #undef DosSetNPipeSem
|
---|
| 724 | #define DosSetNPipeSem _DosSetNPipeSem
|
---|
| 725 |
|
---|
| 726 | ULONG APIENTRY _DosTransactNPipe(HPIPE a, PVOID b, ULONG c, PVOID d, ULONG e, PULONG f);
|
---|
| 727 |
|
---|
| 728 | #undef DosTransactNPipe
|
---|
| 729 | #define DosTransactNPipe _DosTransactNPipe
|
---|
| 730 |
|
---|
| 731 | ULONG APIENTRY _DosWaitNPipe(PCSZ a, ULONG b);
|
---|
| 732 |
|
---|
| 733 | #undef DosWaitNPipe
|
---|
| 734 | #define DosWaitNPipe _DosWaitNPipe
|
---|
| 735 |
|
---|
| 736 | ULONG APIENTRY _DosCreatePipe(PHFILE a, PHFILE b, ULONG c);
|
---|
| 737 |
|
---|
| 738 | #undef DosCreatePipe
|
---|
| 739 | #define DosCreatePipe _DosCreatePipe
|
---|
| 740 |
|
---|
| 741 | #endif
|
---|
| 742 | #ifdef INCL_DOSQUEUES
|
---|
| 743 | ULONG APIENTRY _DosCloseQueue(HQUEUE a);
|
---|
| 744 |
|
---|
| 745 | #undef DosCloseQueue
|
---|
| 746 | #define DosCloseQueue _DosCloseQueue
|
---|
| 747 |
|
---|
| 748 | ULONG APIENTRY _DosCreateQueue(PHQUEUE a, ULONG b, PCSZ c);
|
---|
| 749 |
|
---|
| 750 | #undef DosCreateQueue
|
---|
| 751 | #define DosCreateQueue _DosCreateQueue
|
---|
| 752 |
|
---|
| 753 | ULONG APIENTRY _DosOpenQueue(PPID a, PHQUEUE b, PCSZ c);
|
---|
| 754 |
|
---|
| 755 | #undef DosOpenQueue
|
---|
| 756 | #define DosOpenQueue _DosOpenQueue
|
---|
| 757 |
|
---|
| 758 | ULONG APIENTRY _DosPeekQueue(HQUEUE a, PREQUESTDATA b, PULONG c, PPVOID d, PULONG e, BOOL32 f, PBYTE g, HEV h);
|
---|
| 759 |
|
---|
| 760 | #undef DosPeekQueue
|
---|
| 761 | #define DosPeekQueue _DosPeekQueue
|
---|
| 762 |
|
---|
| 763 | ULONG APIENTRY _DosPurgeQueue(HQUEUE a);
|
---|
| 764 |
|
---|
| 765 | #undef DosPurgeQueue
|
---|
| 766 | #define DosPurgeQueue _DosPurgeQueue
|
---|
| 767 |
|
---|
| 768 | ULONG APIENTRY _DosQueryQueue(HQUEUE a, PULONG b);
|
---|
| 769 |
|
---|
| 770 | #undef DosQueryQueue
|
---|
| 771 | #define DosQueryQueue _DosQueryQueue
|
---|
| 772 |
|
---|
| 773 | ULONG APIENTRY _DosReadQueue(HQUEUE a, PREQUESTDATA b, PULONG c, PPVOID d, ULONG e, BOOL32 f, PBYTE g, HEV h);
|
---|
| 774 |
|
---|
| 775 | #undef DosReadQueue
|
---|
| 776 | #define DosReadQueue _DosReadQueue
|
---|
| 777 |
|
---|
| 778 | ULONG APIENTRY _DosWriteQueue(HQUEUE a, ULONG b, ULONG c, PVOID d, ULONG e);
|
---|
| 779 |
|
---|
| 780 | #undef DosWriteQueue
|
---|
| 781 | #define DosWriteQueue _DosWriteQueue
|
---|
| 782 |
|
---|
| 783 | #endif
|
---|
| 784 | #ifdef INCL_DOSEXCEPTIONS
|
---|
| 785 | ULONG APIENTRY _DosAcknowledgeSignalException(ULONG a);
|
---|
| 786 |
|
---|
| 787 | #undef DosAcknowledgeSignalException
|
---|
| 788 | #define DosAcknowledgeSignalException _DosAcknowledgeSignalException
|
---|
| 789 |
|
---|
| 790 | ULONG APIENTRY _DosEnterMustComplete(PULONG a);
|
---|
| 791 |
|
---|
| 792 | #undef DosEnterMustComplete
|
---|
| 793 | #define DosEnterMustComplete _DosEnterMustComplete
|
---|
| 794 |
|
---|
| 795 | ULONG APIENTRY _DosExitMustComplete(PULONG a);
|
---|
| 796 |
|
---|
| 797 | #undef DosExitMustComplete
|
---|
| 798 | #define DosExitMustComplete _DosExitMustComplete
|
---|
| 799 |
|
---|
| 800 | ULONG APIENTRY _DosQueryThreadContext(TID a, ULONG b, PCONTEXTRECORD c);
|
---|
| 801 |
|
---|
| 802 | #undef DosQueryThreadContext
|
---|
| 803 | #define DosQueryThreadContext _DosQueryThreadContext
|
---|
| 804 |
|
---|
| 805 | ULONG APIENTRY _DosRaiseException(PEXCEPTIONREPORTRECORD a);
|
---|
| 806 |
|
---|
| 807 | #undef DosRaiseException
|
---|
| 808 | #define DosRaiseException _DosRaiseException
|
---|
| 809 |
|
---|
| 810 | ULONG APIENTRY _DosSendSignalException(PID a, ULONG b);
|
---|
| 811 |
|
---|
| 812 | #undef DosSendSignalException
|
---|
| 813 | #define DosSendSignalException _DosSendSignalException
|
---|
| 814 |
|
---|
| 815 | ULONG APIENTRY _DosSetExceptionHandler(PEXCEPTIONREGISTRATIONRECORD a);
|
---|
| 816 |
|
---|
| 817 | #undef DosSetExceptionHandler
|
---|
| 818 | #define DosSetExceptionHandler _DosSetExceptionHandler
|
---|
| 819 |
|
---|
| 820 | ULONG APIENTRY _DosSetSignalExceptionFocus(BOOL32 a, PULONG b);
|
---|
| 821 |
|
---|
| 822 | #undef DosSetSignalExceptionFocus
|
---|
| 823 | #define DosSetSignalExceptionFocus _DosSetSignalExceptionFocus
|
---|
| 824 |
|
---|
| 825 | ULONG APIENTRY _DosUnsetExceptionHandler(PEXCEPTIONREGISTRATIONRECORD a);
|
---|
| 826 |
|
---|
| 827 | #undef DosUnsetExceptionHandler
|
---|
| 828 | #define DosUnsetExceptionHandler _DosUnsetExceptionHandler
|
---|
| 829 |
|
---|
| 830 | ULONG APIENTRY _DosUnwindException(PEXCEPTIONREGISTRATIONRECORD a, PVOID b, PEXCEPTIONREPORTRECORD c);
|
---|
| 831 |
|
---|
| 832 | #undef DosUnwindException
|
---|
| 833 | #define DosUnwindException _DosUnwindException
|
---|
| 834 |
|
---|
| 835 | #endif
|
---|
| 836 | #ifdef INCL_DOSMISC
|
---|
| 837 | ULONG APIENTRY _DosQuerySysInfo(ULONG a, ULONG b, PVOID c, ULONG d);
|
---|
| 838 |
|
---|
| 839 | #undef DosQuerySysInfo
|
---|
| 840 | #define DosQuerySysInfo _DosQuerySysInfo
|
---|
| 841 |
|
---|
| 842 | ULONG APIENTRY _DosScanEnv(PCSZ a, PCSZ *b);
|
---|
| 843 |
|
---|
| 844 | #undef DosScanEnv
|
---|
| 845 | #define DosScanEnv _DosScanEnv
|
---|
| 846 |
|
---|
| 847 | ULONG APIENTRY _DosQueryRASInfo(ULONG a, PPVOID b);
|
---|
| 848 |
|
---|
| 849 | #undef DosQueryRASInfo
|
---|
| 850 | #define DosQueryRASInfo _DosQueryRASInfo
|
---|
| 851 |
|
---|
| 852 | #endif
|
---|
| 853 | #ifdef INCL_DOSDATETIME
|
---|
| 854 | ULONG APIENTRY _DosGetDateTime(PDATETIME a);
|
---|
| 855 |
|
---|
| 856 | #undef DosGetDateTime
|
---|
| 857 | #define DosGetDateTime _DosGetDateTime
|
---|
| 858 |
|
---|
| 859 | ULONG APIENTRY _DosSetDateTime(PDATETIME a);
|
---|
| 860 |
|
---|
| 861 | #undef DosSetDateTime
|
---|
| 862 | #define DosSetDateTime _DosSetDateTime
|
---|
| 863 |
|
---|
| 864 | ULONG APIENTRY _DosAsyncTimer(ULONG a, HSEM b, PHTIMER c);
|
---|
| 865 |
|
---|
| 866 | #undef DosAsyncTimer
|
---|
| 867 | #define DosAsyncTimer _DosAsyncTimer
|
---|
| 868 |
|
---|
| 869 | ULONG APIENTRY _DosStartTimer(ULONG a, HSEM b, PHTIMER c);
|
---|
| 870 |
|
---|
| 871 | #undef DosStartTimer
|
---|
| 872 | #define DosStartTimer _DosStartTimer
|
---|
| 873 |
|
---|
| 874 | ULONG APIENTRY _DosStopTimer(HTIMER a);
|
---|
| 875 |
|
---|
| 876 | #undef DosStopTimer
|
---|
| 877 | #define DosStopTimer _DosStopTimer
|
---|
| 878 |
|
---|
| 879 | #endif
|
---|
| 880 | #ifdef DosTmrQueryFreq
|
---|
| 881 | ULONG APIENTRY _DosTmrQueryFreq(PULONG a);
|
---|
| 882 |
|
---|
| 883 | #undef DosTmrQueryFreq
|
---|
| 884 | #define DosTmrQueryFreq _DosTmrQueryFreq
|
---|
| 885 |
|
---|
| 886 | ULONG APIENTRY _DosTmrQueryTime(PQWORD a);
|
---|
| 887 |
|
---|
| 888 | #undef DosTmrQueryTime
|
---|
| 889 | #define DosTmrQueryTime _DosTmrQueryTime
|
---|
| 890 |
|
---|
| 891 | #endif
|
---|
| 892 | #ifdef INCL_DOSMVDM
|
---|
| 893 | ULONG APIENTRY _DosCloseVDD(HVDD a);
|
---|
| 894 |
|
---|
| 895 | #undef DosCloseVDD
|
---|
| 896 | #define DosCloseVDD _DosCloseVDD
|
---|
| 897 |
|
---|
| 898 | ULONG APIENTRY _DosOpenVDD(PCSZ a, PHVDD b);
|
---|
| 899 |
|
---|
| 900 | #undef DosOpenVDD
|
---|
| 901 | #define DosOpenVDD _DosOpenVDD
|
---|
| 902 |
|
---|
| 903 | ULONG APIENTRY _DosQueryDOSProperty(SGID a, PCSZ b, ULONG c, PSZ d);
|
---|
| 904 |
|
---|
| 905 | #undef DosQueryDOSProperty
|
---|
| 906 | #define DosQueryDOSProperty _DosQueryDOSProperty
|
---|
| 907 |
|
---|
| 908 | ULONG APIENTRY _DosRequestVDD(HVDD a, SGID b, ULONG c, ULONG d, PVOID e, ULONG f, PVOID g);
|
---|
| 909 |
|
---|
| 910 | #undef DosRequestVDD
|
---|
| 911 | #define DosRequestVDD _DosRequestVDD
|
---|
| 912 |
|
---|
| 913 | ULONG APIENTRY _DosSetDOSProperty(SGID a, PCSZ b, ULONG c, PCSZ d);
|
---|
| 914 |
|
---|
| 915 | #undef DosSetDOSProperty
|
---|
| 916 | #define DosSetDOSProperty _DosSetDOSProperty
|
---|
| 917 |
|
---|
| 918 | #endif
|
---|
| 919 | #ifdef INCL_DOSPROCESS
|
---|
| 920 | ULONG APIENTRY _DosDebug(uDB_t *a);
|
---|
| 921 |
|
---|
| 922 | #undef DosDebug
|
---|
| 923 | #define DosDebug _DosDebug
|
---|
| 924 |
|
---|
| 925 | #endif
|
---|
| 926 | #ifdef INCL_DOSMISC
|
---|
| 927 | ULONG APIENTRY _DosGetMessage(PCHAR *a, ULONG b, PCHAR c, ULONG d, ULONG e, PCSZ f, PULONG g);
|
---|
| 928 |
|
---|
| 929 | #undef DosGetMessage
|
---|
| 930 | #define DosGetMessage _DosGetMessage
|
---|
| 931 |
|
---|
| 932 | ULONG APIENTRY _DosInsertMessage(PCHAR *a, ULONG b, PCSZ c, ULONG d, PCHAR e, ULONG f, PULONG g);
|
---|
| 933 |
|
---|
| 934 | #undef DosInsertMessage
|
---|
| 935 | #define DosInsertMessage _DosInsertMessage
|
---|
| 936 |
|
---|
| 937 | ULONG APIENTRY _DosPutMessage(HFILE a, ULONG b, PCHAR c);
|
---|
| 938 |
|
---|
| 939 | #undef DosPutMessage
|
---|
| 940 | #define DosPutMessage _DosPutMessage
|
---|
| 941 |
|
---|
| 942 | ULONG APIENTRY _DosQueryMessageCP(PCHAR a, ULONG b, PCSZ c, PULONG d);
|
---|
| 943 |
|
---|
| 944 | #undef DosQueryMessageCP
|
---|
| 945 | #define DosQueryMessageCP _DosQueryMessageCP
|
---|
| 946 |
|
---|
| 947 | #endif
|
---|
| 948 | #ifdef INCL_DOSRAS
|
---|
| 949 | ULONG APIENTRY _DosDumpProcess(ULONG a, ULONG b, PID c);
|
---|
| 950 |
|
---|
| 951 | #undef DosDumpProcess
|
---|
| 952 | #define DosDumpProcess _DosDumpProcess
|
---|
| 953 |
|
---|
| 954 | ULONG APIENTRY _DosForceSystemDump(ULONG a);
|
---|
| 955 |
|
---|
| 956 | #undef DosForceSystemDump
|
---|
| 957 | #define DosForceSystemDump _DosForceSystemDump
|
---|
| 958 |
|
---|
| 959 | ULONG APIENTRY _DosQueryRASInfo(ULONG a, PPVOID b);
|
---|
| 960 |
|
---|
| 961 | #undef DosQueryRASInfo
|
---|
| 962 | #define DosQueryRASInfo _DosQueryRASInfo
|
---|
| 963 |
|
---|
| 964 | ULONG APIENTRY _DosSuppressPopUps(ULONG a, ULONG b);
|
---|
| 965 |
|
---|
| 966 | #undef DosSuppressPopUps
|
---|
| 967 | #define DosSuppressPopUps _DosSuppressPopUps
|
---|
| 968 |
|
---|
| 969 | #endif
|
---|
| 970 | #ifdef INCL_RXSUBCOM
|
---|
| 971 | ULONG APIENTRY _RexxDeregisterSubcom(PCSZ a, PCSZ b);
|
---|
| 972 |
|
---|
| 973 | #undef RexxDeregisterSubcom
|
---|
| 974 | #define RexxDeregisterSubcom _RexxDeregisterSubcom
|
---|
| 975 |
|
---|
| 976 | ULONG APIENTRY _RexxQuerySubcom(PCSZ a, PCSZ b, PUSHORT c, PUCHAR d);
|
---|
| 977 |
|
---|
| 978 | #undef RexxQuerySubcom
|
---|
| 979 | #define RexxQuerySubcom _RexxQuerySubcom
|
---|
| 980 |
|
---|
| 981 | ULONG APIENTRY _RexxRegisterSubcomDll(PCSZ a, PCSZ b, PCSZ c, PUCHAR d, ULONG e);
|
---|
| 982 |
|
---|
| 983 | #undef RexxRegisterSubcomDll
|
---|
| 984 | #define RexxRegisterSubcomDll _RexxRegisterSubcomDll
|
---|
| 985 |
|
---|
| 986 | ULONG APIENTRY _RexxRegisterSubcomExe(PCSZ a, PFN b, PUCHAR c);
|
---|
| 987 |
|
---|
| 988 | #undef RexxRegisterSubcomExe
|
---|
| 989 | #define RexxRegisterSubcomExe _RexxRegisterSubcomExe
|
---|
| 990 |
|
---|
| 991 | #endif
|
---|
| 992 | #ifdef INCL_RXSHV
|
---|
| 993 | ULONG APIENTRY _RexxVariablePool(PSHVBLOCK a);
|
---|
| 994 |
|
---|
| 995 | #undef RexxVariablePool
|
---|
| 996 | #define RexxVariablePool _RexxVariablePool
|
---|
| 997 |
|
---|
| 998 | #endif
|
---|
| 999 | #ifdef INCL_RXFUNC
|
---|
| 1000 | ULONG APIENTRY _RexxDeregisterFunction(PCSZ a);
|
---|
| 1001 |
|
---|
| 1002 | #undef RexxDeregisterFunction
|
---|
| 1003 | #define RexxDeregisterFunction _RexxDeregisterFunction
|
---|
| 1004 |
|
---|
| 1005 | ULONG APIENTRY _RexxQueryFunction(PCSZ a);
|
---|
| 1006 |
|
---|
| 1007 | #undef RexxQueryFunction
|
---|
| 1008 | #define RexxQueryFunction _RexxQueryFunction
|
---|
| 1009 |
|
---|
| 1010 | ULONG APIENTRY _RexxRegisterFunctionDll(PCSZ a, PCSZ b, PCSZ c);
|
---|
| 1011 |
|
---|
| 1012 | #undef RexxRegisterFunctionDll
|
---|
| 1013 | #define RexxRegisterFunctionDll _RexxRegisterFunctionDll
|
---|
| 1014 |
|
---|
| 1015 | ULONG APIENTRY _RexxRegisterFunctionExe(PCSZ a, RexxFunctionHandler *b);
|
---|
| 1016 |
|
---|
| 1017 | #undef RexxRegisterFunctionExe
|
---|
| 1018 | #define RexxRegisterFunctionExe _RexxRegisterFunctionExe
|
---|
| 1019 |
|
---|
| 1020 | #endif
|
---|
| 1021 | #ifdef INCL_RXSYSEXIT
|
---|
| 1022 | ULONG APIENTRY _RexxDeregisterExit(PCSZ a, PCSZ b);
|
---|
| 1023 |
|
---|
| 1024 | #undef RexxDeregisterExit
|
---|
| 1025 | #define RexxDeregisterExit _RexxDeregisterExit
|
---|
| 1026 |
|
---|
| 1027 | ULONG APIENTRY _RexxQueryExit(PCSZ a, PCSZ b, PUSHORT c, PUCHAR d);
|
---|
| 1028 |
|
---|
| 1029 | #undef RexxQueryExit
|
---|
| 1030 | #define RexxQueryExit _RexxQueryExit
|
---|
| 1031 |
|
---|
| 1032 | ULONG APIENTRY _RexxRegisterExitDll(PCSZ a, PCSZ b, PCSZ c, PUCHAR d, ULONG e);
|
---|
| 1033 |
|
---|
| 1034 | #undef RexxRegisterExitDll
|
---|
| 1035 | #define RexxRegisterExitDll _RexxRegisterExitDll
|
---|
| 1036 |
|
---|
| 1037 | ULONG APIENTRY _RexxRegisterExitExe(PCSZ a, PFN b, PUCHAR c);
|
---|
| 1038 |
|
---|
| 1039 | #undef RexxRegisterExitExe
|
---|
| 1040 | #define RexxRegisterExitExe _RexxRegisterExitExe
|
---|
| 1041 |
|
---|
| 1042 | #endif
|
---|
| 1043 | #ifdef INCL_RXARI
|
---|
| 1044 | ULONG APIENTRY _RexxResetTrace(PID a, TID b);
|
---|
| 1045 |
|
---|
| 1046 | #undef RexxResetTrace
|
---|
| 1047 | #define RexxResetTrace _RexxResetTrace
|
---|
| 1048 |
|
---|
| 1049 | ULONG APIENTRY _RexxSetHalt(PID a, TID b);
|
---|
| 1050 |
|
---|
| 1051 | #undef RexxSetHalt
|
---|
| 1052 | #define RexxSetHalt _RexxSetHalt
|
---|
| 1053 |
|
---|
| 1054 | ULONG APIENTRY _RexxSetTrace(PID a, TID b);
|
---|
| 1055 |
|
---|
| 1056 | #undef RexxSetTrace
|
---|
| 1057 | #define RexxSetTrace _RexxSetTrace
|
---|
| 1058 |
|
---|
| 1059 | #endif
|
---|
| 1060 | #ifdef INCL_RXMACRO
|
---|
| 1061 | ULONG APIENTRY _RexxAddMacro(PCSZ a, PCSZ b, ULONG c);
|
---|
| 1062 |
|
---|
| 1063 | #undef RexxAddMacro
|
---|
| 1064 | #define RexxAddMacro _RexxAddMacro
|
---|
| 1065 |
|
---|
| 1066 | ULONG APIENTRY _RexxClearMacroSpace();
|
---|
| 1067 |
|
---|
| 1068 | #undef RexxClearMacroSpace
|
---|
| 1069 | #define RexxClearMacroSpace _RexxClearMacroSpace
|
---|
| 1070 |
|
---|
| 1071 | ULONG APIENTRY _RexxDropMacro(PCSZ a);
|
---|
| 1072 |
|
---|
| 1073 | #undef RexxDropMacro
|
---|
| 1074 | #define RexxDropMacro _RexxDropMacro
|
---|
| 1075 |
|
---|
| 1076 | ULONG APIENTRY _RexxLoadMacroSpace(ULONG a, PCSZ *b, PCSZ c);
|
---|
| 1077 |
|
---|
| 1078 | #undef RexxLoadMacroSpace
|
---|
| 1079 | #define RexxLoadMacroSpace _RexxLoadMacroSpace
|
---|
| 1080 |
|
---|
| 1081 | ULONG APIENTRY _RexxQueryMacro(PCSZ a, PUSHORT b);
|
---|
| 1082 |
|
---|
| 1083 | #undef RexxQueryMacro
|
---|
| 1084 | #define RexxQueryMacro _RexxQueryMacro
|
---|
| 1085 |
|
---|
| 1086 | ULONG APIENTRY _RexxReorderMacro(PCSZ a, ULONG b);
|
---|
| 1087 |
|
---|
| 1088 | #undef RexxReorderMacro
|
---|
| 1089 | #define RexxReorderMacro _RexxReorderMacro
|
---|
| 1090 |
|
---|
| 1091 | ULONG APIENTRY _RexxSaveMacroSpace(ULONG a, PCSZ *b, PCSZ c);
|
---|
| 1092 |
|
---|
| 1093 | #undef RexxSaveMacroSpace
|
---|
| 1094 | #define RexxSaveMacroSpace _RexxSaveMacroSpace
|
---|
| 1095 |
|
---|
| 1096 | LONG APIENTRY _RexxStart(LONG a, PRXSTRING b, PCSZ c, PRXSTRING d, PCSZ e, LONG f, PRXSYSEXIT g, PSHORT h, PRXSTRING i);
|
---|
| 1097 |
|
---|
| 1098 | #undef RexxStart
|
---|
| 1099 | #define RexxStart _RexxStart
|
---|
| 1100 |
|
---|
| 1101 | #endif
|
---|
| 1102 | #ifdef INCL_WIN
|
---|
| 1103 | #ifdef INCL_WINMESSAGEMGR
|
---|
| 1104 | BOOL APIENTRY _WinCancelShutdown(HMQ a, BOOL b);
|
---|
| 1105 |
|
---|
| 1106 | #undef WinCancelShutdown
|
---|
| 1107 | #define WinCancelShutdown _WinCancelShutdown
|
---|
| 1108 |
|
---|
| 1109 | HMQ APIENTRY _WinCreateMsgQueue(HAB a, LONG b);
|
---|
| 1110 |
|
---|
| 1111 | #undef WinCreateMsgQueue
|
---|
| 1112 | #define WinCreateMsgQueue _WinCreateMsgQueue
|
---|
| 1113 |
|
---|
| 1114 | BOOL APIENTRY _WinDestroyMsgQueue(HMQ a);
|
---|
| 1115 |
|
---|
| 1116 | #undef WinDestroyMsgQueue
|
---|
| 1117 | #define WinDestroyMsgQueue _WinDestroyMsgQueue
|
---|
| 1118 |
|
---|
| 1119 | MRESULT APIENTRY _WinDispatchMsg(HAB a, PQMSG b);
|
---|
| 1120 |
|
---|
| 1121 | #undef WinDispatchMsg
|
---|
| 1122 | #define WinDispatchMsg _WinDispatchMsg
|
---|
| 1123 |
|
---|
| 1124 | BOOL APIENTRY _WinGetMsg(HAB a, PQMSG b, HWND c, ULONG d, ULONG e);
|
---|
| 1125 |
|
---|
| 1126 | #undef WinGetMsg
|
---|
| 1127 | #define WinGetMsg _WinGetMsg
|
---|
| 1128 |
|
---|
| 1129 | BOOL APIENTRY _WinLockInput(HMQ a, ULONG b);
|
---|
| 1130 |
|
---|
| 1131 | #undef WinLockInput
|
---|
| 1132 | #define WinLockInput _WinLockInput
|
---|
| 1133 |
|
---|
| 1134 | BOOL APIENTRY _WinPeekMsg(HAB a, PQMSG b, HWND c, ULONG d, ULONG e, ULONG f);
|
---|
| 1135 |
|
---|
| 1136 | #undef WinPeekMsg
|
---|
| 1137 | #define WinPeekMsg _WinPeekMsg
|
---|
| 1138 |
|
---|
| 1139 | BOOL APIENTRY _WinPostMsg(HWND a, ULONG b, MPARAM c, MPARAM d);
|
---|
| 1140 |
|
---|
| 1141 | #undef WinPostMsg
|
---|
| 1142 | #define WinPostMsg _WinPostMsg
|
---|
| 1143 |
|
---|
| 1144 | HMQ APIENTRY _WinQueueFromID(HAB a, PID b, TID c);
|
---|
| 1145 |
|
---|
| 1146 | #undef WinQueueFromID
|
---|
| 1147 | #define WinQueueFromID _WinQueueFromID
|
---|
| 1148 |
|
---|
| 1149 | BOOL APIENTRY _WinQueryQueueInfo(HMQ a, PMQINFO b, ULONG c);
|
---|
| 1150 |
|
---|
| 1151 | #undef WinQueryQueueInfo
|
---|
| 1152 | #define WinQueryQueueInfo _WinQueryQueueInfo
|
---|
| 1153 |
|
---|
| 1154 | HMQ APIENTRY _WinQuerySendMsg(HAB a, HMQ b, HMQ c, PQMSG d);
|
---|
| 1155 |
|
---|
| 1156 | #undef WinQuerySendMsg
|
---|
| 1157 | #define WinQuerySendMsg _WinQuerySendMsg
|
---|
| 1158 |
|
---|
| 1159 | BOOL APIENTRY _WinRegisterUserDatatype(HAB a, LONG b, LONG c, PLONG d);
|
---|
| 1160 |
|
---|
| 1161 | #undef WinRegisterUserDatatype
|
---|
| 1162 | #define WinRegisterUserDatatype _WinRegisterUserDatatype
|
---|
| 1163 |
|
---|
| 1164 | BOOL APIENTRY _WinRegisterUserMsg(HAB a, ULONG b, LONG c, LONG d, LONG e, LONG f, LONG g);
|
---|
| 1165 |
|
---|
| 1166 | #undef WinRegisterUserMsg
|
---|
| 1167 | #define WinRegisterUserMsg _WinRegisterUserMsg
|
---|
| 1168 |
|
---|
| 1169 | BOOL APIENTRY _WinReplyMsg(HAB a, HMQ b, HMQ c, MRESULT d);
|
---|
| 1170 |
|
---|
| 1171 | #undef WinReplyMsg
|
---|
| 1172 | #define WinReplyMsg _WinReplyMsg
|
---|
| 1173 |
|
---|
| 1174 | MRESULT APIENTRY _WinSendMsg(HWND a, ULONG b, MPARAM c, MPARAM d);
|
---|
| 1175 |
|
---|
| 1176 | #undef WinSendMsg
|
---|
| 1177 | #define WinSendMsg _WinSendMsg
|
---|
| 1178 |
|
---|
| 1179 | BOOL APIENTRY _WinSetMsgMode(HAB a, PCSZ b, LONG c);
|
---|
| 1180 |
|
---|
| 1181 | #undef WinSetMsgMode
|
---|
| 1182 | #define WinSetMsgMode _WinSetMsgMode
|
---|
| 1183 |
|
---|
| 1184 | BOOL APIENTRY _WinSetSynchroMode(HAB a, LONG b);
|
---|
| 1185 |
|
---|
| 1186 | #undef WinSetSynchroMode
|
---|
| 1187 | #define WinSetSynchroMode _WinSetSynchroMode
|
---|
| 1188 |
|
---|
| 1189 | BOOL APIENTRY _WinThreadAssocQueue(HAB a, HMQ b);
|
---|
| 1190 |
|
---|
| 1191 | #undef WinThreadAssocQueue
|
---|
| 1192 | #define WinThreadAssocQueue _WinThreadAssocQueue
|
---|
| 1193 |
|
---|
| 1194 | BOOL APIENTRY _WinWakeThread(HMQ a);
|
---|
| 1195 |
|
---|
| 1196 | #undef WinWakeThread
|
---|
| 1197 | #define WinWakeThread _WinWakeThread
|
---|
| 1198 |
|
---|
| 1199 | #endif
|
---|
| 1200 | HWND APIENTRY _WinCreateWindow(HWND a, PCSZ b, PCSZ c, ULONG d, LONG e, LONG f, LONG g, LONG h, HWND i, HWND j, ULONG k, PVOID l, PVOID m);
|
---|
| 1201 |
|
---|
| 1202 | #undef WinCreateWindow
|
---|
| 1203 | #define WinCreateWindow _WinCreateWindow
|
---|
| 1204 |
|
---|
| 1205 | BOOL APIENTRY _WinDrawBitmap(HPS a, HBITMAP b, PRECTL c, PPOINTL d, LONG e, LONG f, ULONG g);
|
---|
| 1206 |
|
---|
| 1207 | #undef WinDrawBitmap
|
---|
| 1208 | #define WinDrawBitmap _WinDrawBitmap
|
---|
| 1209 |
|
---|
| 1210 | BOOL APIENTRY _WinDrawBorder(HPS a, PRECTL b, LONG c, LONG d, LONG e, LONG f, ULONG g);
|
---|
| 1211 |
|
---|
| 1212 | #undef WinDrawBorder
|
---|
| 1213 | #define WinDrawBorder _WinDrawBorder
|
---|
| 1214 |
|
---|
| 1215 | LONG APIENTRY _WinDrawText(HPS a, LONG b, PCH c, PRECTL d, LONG e, LONG f, ULONG g);
|
---|
| 1216 |
|
---|
| 1217 | #undef WinDrawText
|
---|
| 1218 | #define WinDrawText _WinDrawText
|
---|
| 1219 |
|
---|
| 1220 | BOOL APIENTRY _WinEnableWindow(HWND a, BOOL b);
|
---|
| 1221 |
|
---|
| 1222 | #undef WinEnableWindow
|
---|
| 1223 | #define WinEnableWindow _WinEnableWindow
|
---|
| 1224 |
|
---|
| 1225 | BOOL APIENTRY _WinEnableWindowUpdate(HWND a, BOOL b);
|
---|
| 1226 |
|
---|
| 1227 | #undef WinEnableWindowUpdate
|
---|
| 1228 | #define WinEnableWindowUpdate _WinEnableWindowUpdate
|
---|
| 1229 |
|
---|
| 1230 | BOOL APIENTRY _WinInvalidateRect(HWND a, PRECTL b, BOOL c);
|
---|
| 1231 |
|
---|
| 1232 | #undef WinInvalidateRect
|
---|
| 1233 | #define WinInvalidateRect _WinInvalidateRect
|
---|
| 1234 |
|
---|
| 1235 | BOOL APIENTRY _WinInvalidateRegion(HWND a, HRGN b, BOOL c);
|
---|
| 1236 |
|
---|
| 1237 | #undef WinInvalidateRegion
|
---|
| 1238 | #define WinInvalidateRegion _WinInvalidateRegion
|
---|
| 1239 |
|
---|
| 1240 | BOOL APIENTRY _WinInvertRect(HPS a, PRECTL b);
|
---|
| 1241 |
|
---|
| 1242 | #undef WinInvertRect
|
---|
| 1243 | #define WinInvertRect _WinInvertRect
|
---|
| 1244 |
|
---|
| 1245 | BOOL APIENTRY _WinIsChild(HWND a, HWND b);
|
---|
| 1246 |
|
---|
| 1247 | #undef WinIsChild
|
---|
| 1248 | #define WinIsChild _WinIsChild
|
---|
| 1249 |
|
---|
| 1250 | BOOL APIENTRY _WinIsWindow(HAB a, HWND b);
|
---|
| 1251 |
|
---|
| 1252 | #undef WinIsWindow
|
---|
| 1253 | #define WinIsWindow _WinIsWindow
|
---|
| 1254 |
|
---|
| 1255 | BOOL APIENTRY _WinIsWindowEnabled(HWND a);
|
---|
| 1256 |
|
---|
| 1257 | #undef WinIsWindowEnabled
|
---|
| 1258 | #define WinIsWindowEnabled _WinIsWindowEnabled
|
---|
| 1259 |
|
---|
| 1260 | BOOL APIENTRY _WinIsWindowVisible(HWND a);
|
---|
| 1261 |
|
---|
| 1262 | #undef WinIsWindowVisible
|
---|
| 1263 | #define WinIsWindowVisible _WinIsWindowVisible
|
---|
| 1264 |
|
---|
| 1265 | LONG APIENTRY _WinLoadMessage(HAB a, HMODULE b, ULONG c, LONG d, PSZ e);
|
---|
| 1266 |
|
---|
| 1267 | #undef WinLoadMessage
|
---|
| 1268 | #define WinLoadMessage _WinLoadMessage
|
---|
| 1269 |
|
---|
| 1270 | LONG APIENTRY _WinLoadString(HAB a, HMODULE b, ULONG c, LONG d, PSZ e);
|
---|
| 1271 |
|
---|
| 1272 | #undef WinLoadString
|
---|
| 1273 | #define WinLoadString _WinLoadString
|
---|
| 1274 |
|
---|
| 1275 | LONG APIENTRY _WinMultWindowFromIDs(HWND a, PHWND b, ULONG c, ULONG d);
|
---|
| 1276 |
|
---|
| 1277 | #undef WinMultWindowFromIDs
|
---|
| 1278 | #define WinMultWindowFromIDs _WinMultWindowFromIDs
|
---|
| 1279 |
|
---|
| 1280 | HWND APIENTRY _WinQueryDesktopWindow(HAB a, HDC b);
|
---|
| 1281 |
|
---|
| 1282 | #undef WinQueryDesktopWindow
|
---|
| 1283 | #define WinQueryDesktopWindow _WinQueryDesktopWindow
|
---|
| 1284 |
|
---|
| 1285 | HWND APIENTRY _WinQueryObjectWindow(HWND a);
|
---|
| 1286 |
|
---|
| 1287 | #undef WinQueryObjectWindow
|
---|
| 1288 | #define WinQueryObjectWindow _WinQueryObjectWindow
|
---|
| 1289 |
|
---|
| 1290 | HPOINTER APIENTRY _WinQueryPointer(HWND a);
|
---|
| 1291 |
|
---|
| 1292 | #undef WinQueryPointer
|
---|
| 1293 | #define WinQueryPointer _WinQueryPointer
|
---|
| 1294 |
|
---|
| 1295 | HWND APIENTRY _WinQueryWindow(HWND a, LONG b);
|
---|
| 1296 |
|
---|
| 1297 | #undef WinQueryWindow
|
---|
| 1298 | #define WinQueryWindow _WinQueryWindow
|
---|
| 1299 |
|
---|
| 1300 | BOOL APIENTRY _WinQueryWindowPos(HWND a, PSWP b);
|
---|
| 1301 |
|
---|
| 1302 | #undef WinQueryWindowPos
|
---|
| 1303 | #define WinQueryWindowPos _WinQueryWindowPos
|
---|
| 1304 |
|
---|
| 1305 | BOOL APIENTRY _WinQueryWindowProcess(HWND a, PPID b, PTID c);
|
---|
| 1306 |
|
---|
| 1307 | #undef WinQueryWindowProcess
|
---|
| 1308 | #define WinQueryWindowProcess _WinQueryWindowProcess
|
---|
| 1309 |
|
---|
| 1310 | LONG APIENTRY _WinQueryWindowText(HWND a, LONG b, PCH c);
|
---|
| 1311 |
|
---|
| 1312 | #undef WinQueryWindowText
|
---|
| 1313 | #define WinQueryWindowText _WinQueryWindowText
|
---|
| 1314 |
|
---|
| 1315 | LONG APIENTRY _WinQueryWindowTextLength(HWND a);
|
---|
| 1316 |
|
---|
| 1317 | #undef WinQueryWindowTextLength
|
---|
| 1318 | #define WinQueryWindowTextLength _WinQueryWindowTextLength
|
---|
| 1319 |
|
---|
| 1320 | BOOL APIENTRY _WinSetMultWindowPos(HAB a, PSWP b, ULONG c);
|
---|
| 1321 |
|
---|
| 1322 | #undef WinSetMultWindowPos
|
---|
| 1323 | #define WinSetMultWindowPos _WinSetMultWindowPos
|
---|
| 1324 |
|
---|
| 1325 | BOOL APIENTRY _WinSetOwner(HWND a, HWND b);
|
---|
| 1326 |
|
---|
| 1327 | #undef WinSetOwner
|
---|
| 1328 | #define WinSetOwner _WinSetOwner
|
---|
| 1329 |
|
---|
| 1330 | BOOL APIENTRY _WinSetParent(HWND a, HWND b, BOOL c);
|
---|
| 1331 |
|
---|
| 1332 | #undef WinSetParent
|
---|
| 1333 | #define WinSetParent _WinSetParent
|
---|
| 1334 |
|
---|
| 1335 | BOOL APIENTRY _WinSetWindowPos(HWND a, HWND b, LONG c, LONG d, LONG e, LONG f, ULONG g);
|
---|
| 1336 |
|
---|
| 1337 | #undef WinSetWindowPos
|
---|
| 1338 | #define WinSetWindowPos _WinSetWindowPos
|
---|
| 1339 |
|
---|
| 1340 | BOOL APIENTRY _WinSetWindowText(HWND a, PCSZ b);
|
---|
| 1341 |
|
---|
| 1342 | #undef WinSetWindowText
|
---|
| 1343 | #define WinSetWindowText _WinSetWindowText
|
---|
| 1344 |
|
---|
| 1345 | BOOL APIENTRY _WinUpdateWindow(HWND a);
|
---|
| 1346 |
|
---|
| 1347 | #undef WinUpdateWindow
|
---|
| 1348 | #define WinUpdateWindow _WinUpdateWindow
|
---|
| 1349 |
|
---|
| 1350 | HWND APIENTRY _WinWindowFromID(HWND a, ULONG b);
|
---|
| 1351 |
|
---|
| 1352 | #undef WinWindowFromID
|
---|
| 1353 | #define WinWindowFromID _WinWindowFromID
|
---|
| 1354 |
|
---|
| 1355 | #ifdef INCL_WINFRAMEMGR
|
---|
| 1356 | HWND APIENTRY _WinCreateStdWindow(HWND a, ULONG b, PULONG c, PCSZ d, PCSZ e, ULONG f, HMODULE g, ULONG h, PHWND i);
|
---|
| 1357 |
|
---|
| 1358 | #undef WinCreateStdWindow
|
---|
| 1359 | #define WinCreateStdWindow _WinCreateStdWindow
|
---|
| 1360 |
|
---|
| 1361 | BOOL APIENTRY _WinCalcFrameRect(HWND a, PRECTL b, BOOL c);
|
---|
| 1362 |
|
---|
| 1363 | #undef WinCalcFrameRect
|
---|
| 1364 | #define WinCalcFrameRect _WinCalcFrameRect
|
---|
| 1365 |
|
---|
| 1366 | BOOL APIENTRY _WinCreateFrameControls(HWND a, PFRAMECDATA b, PCSZ c);
|
---|
| 1367 |
|
---|
| 1368 | #undef WinCreateFrameControls
|
---|
| 1369 | #define WinCreateFrameControls _WinCreateFrameControls
|
---|
| 1370 |
|
---|
| 1371 | BOOL APIENTRY _WinFlashWindow(HWND a, BOOL b);
|
---|
| 1372 |
|
---|
| 1373 | #undef WinFlashWindow
|
---|
| 1374 | #define WinFlashWindow _WinFlashWindow
|
---|
| 1375 |
|
---|
| 1376 | BOOL APIENTRY _WinGetMaxPosition(HWND a, PSWP b);
|
---|
| 1377 |
|
---|
| 1378 | #undef WinGetMaxPosition
|
---|
| 1379 | #define WinGetMaxPosition _WinGetMaxPosition
|
---|
| 1380 |
|
---|
| 1381 | BOOL APIENTRY _WinGetMinPosition(HWND a, PSWP b, PPOINTL c);
|
---|
| 1382 |
|
---|
| 1383 | #undef WinGetMinPosition
|
---|
| 1384 | #define WinGetMinPosition _WinGetMinPosition
|
---|
| 1385 |
|
---|
| 1386 | BOOL APIENTRY _WinSaveWindowPos(HSAVEWP a, PSWP b, ULONG c);
|
---|
| 1387 |
|
---|
| 1388 | #undef WinSaveWindowPos
|
---|
| 1389 | #define WinSaveWindowPos _WinSaveWindowPos
|
---|
| 1390 |
|
---|
| 1391 | #endif
|
---|
| 1392 | #ifdef INCL_WINWINDOWMGR
|
---|
| 1393 | HPS APIENTRY _WinBeginPaint(HWND a, HPS b, PRECTL c);
|
---|
| 1394 |
|
---|
| 1395 | #undef WinBeginPaint
|
---|
| 1396 | #define WinBeginPaint _WinBeginPaint
|
---|
| 1397 |
|
---|
| 1398 | MRESULT APIENTRY _WinDefWindowProc(HWND a, ULONG b, MPARAM c, MPARAM d);
|
---|
| 1399 |
|
---|
| 1400 | #undef WinDefWindowProc
|
---|
| 1401 | #define WinDefWindowProc _WinDefWindowProc
|
---|
| 1402 |
|
---|
| 1403 | BOOL APIENTRY _WinDestroyWindow(HWND a);
|
---|
| 1404 |
|
---|
| 1405 | #undef WinDestroyWindow
|
---|
| 1406 | #define WinDestroyWindow _WinDestroyWindow
|
---|
| 1407 |
|
---|
| 1408 | BOOL APIENTRY _WinEndPaint(HPS a);
|
---|
| 1409 |
|
---|
| 1410 | #undef WinEndPaint
|
---|
| 1411 | #define WinEndPaint _WinEndPaint
|
---|
| 1412 |
|
---|
| 1413 | BOOL APIENTRY _WinFillRect(HPS a, PRECTL b, LONG c);
|
---|
| 1414 |
|
---|
| 1415 | #undef WinFillRect
|
---|
| 1416 | #define WinFillRect _WinFillRect
|
---|
| 1417 |
|
---|
| 1418 | HPS APIENTRY _WinGetClipPS(HWND a, HWND b, ULONG c);
|
---|
| 1419 |
|
---|
| 1420 | #undef WinGetClipPS
|
---|
| 1421 | #define WinGetClipPS _WinGetClipPS
|
---|
| 1422 |
|
---|
| 1423 | HPS APIENTRY _WinGetPS(HWND a);
|
---|
| 1424 |
|
---|
| 1425 | #undef WinGetPS
|
---|
| 1426 | #define WinGetPS _WinGetPS
|
---|
| 1427 |
|
---|
| 1428 | HAB APIENTRY _WinInitialize(ULONG a);
|
---|
| 1429 |
|
---|
| 1430 | #undef WinInitialize
|
---|
| 1431 | #define WinInitialize _WinInitialize
|
---|
| 1432 |
|
---|
| 1433 | BOOL APIENTRY _WinIsWindowShowing(HWND a);
|
---|
| 1434 |
|
---|
| 1435 | #undef WinIsWindowShowing
|
---|
| 1436 | #define WinIsWindowShowing _WinIsWindowShowing
|
---|
| 1437 |
|
---|
| 1438 | HDC APIENTRY _WinOpenWindowDC(HWND a);
|
---|
| 1439 |
|
---|
| 1440 | #undef WinOpenWindowDC
|
---|
| 1441 | #define WinOpenWindowDC _WinOpenWindowDC
|
---|
| 1442 |
|
---|
| 1443 | HAB APIENTRY _WinQueryAnchorBlock(HWND a);
|
---|
| 1444 |
|
---|
| 1445 | #undef WinQueryAnchorBlock
|
---|
| 1446 | #define WinQueryAnchorBlock _WinQueryAnchorBlock
|
---|
| 1447 |
|
---|
| 1448 | ULONG APIENTRY _WinQueryVersion(HAB a);
|
---|
| 1449 |
|
---|
| 1450 | #undef WinQueryVersion
|
---|
| 1451 | #define WinQueryVersion _WinQueryVersion
|
---|
| 1452 |
|
---|
| 1453 | BOOL APIENTRY _WinQueryWindowRect(HWND a, PRECTL b);
|
---|
| 1454 |
|
---|
| 1455 | #undef WinQueryWindowRect
|
---|
| 1456 | #define WinQueryWindowRect _WinQueryWindowRect
|
---|
| 1457 |
|
---|
| 1458 | BOOL APIENTRY _WinRegisterClass(HAB a, PCSZ b, PFNWP c, ULONG d, ULONG e);
|
---|
| 1459 |
|
---|
| 1460 | #undef WinRegisterClass
|
---|
| 1461 | #define WinRegisterClass _WinRegisterClass
|
---|
| 1462 |
|
---|
| 1463 | BOOL APIENTRY _WinReleasePS(HPS a);
|
---|
| 1464 |
|
---|
| 1465 | #undef WinReleasePS
|
---|
| 1466 | #define WinReleasePS _WinReleasePS
|
---|
| 1467 |
|
---|
| 1468 | LONG APIENTRY _WinScrollWindow(HWND a, LONG b, LONG c, PRECTL d, PRECTL e, HRGN f, PRECTL g, ULONG h);
|
---|
| 1469 |
|
---|
| 1470 | #undef WinScrollWindow
|
---|
| 1471 | #define WinScrollWindow _WinScrollWindow
|
---|
| 1472 |
|
---|
| 1473 | BOOL APIENTRY _WinSetActiveWindow(HWND a, HWND b);
|
---|
| 1474 |
|
---|
| 1475 | #undef WinSetActiveWindow
|
---|
| 1476 | #define WinSetActiveWindow _WinSetActiveWindow
|
---|
| 1477 |
|
---|
| 1478 | BOOL APIENTRY _WinShowWindow(HWND a, BOOL b);
|
---|
| 1479 |
|
---|
| 1480 | #undef WinShowWindow
|
---|
| 1481 | #define WinShowWindow _WinShowWindow
|
---|
| 1482 |
|
---|
| 1483 | BOOL APIENTRY _WinTerminate(HAB a);
|
---|
| 1484 |
|
---|
| 1485 | #undef WinTerminate
|
---|
| 1486 | #define WinTerminate _WinTerminate
|
---|
| 1487 |
|
---|
| 1488 | #endif
|
---|
| 1489 | #ifdef INCL_WINWINDOWMGR
|
---|
| 1490 | HENUM APIENTRY _WinBeginEnumWindows(HWND a);
|
---|
| 1491 |
|
---|
| 1492 | #undef WinBeginEnumWindows
|
---|
| 1493 | #define WinBeginEnumWindows _WinBeginEnumWindows
|
---|
| 1494 |
|
---|
| 1495 | BOOL APIENTRY _WinEndEnumWindows(HENUM a);
|
---|
| 1496 |
|
---|
| 1497 | #undef WinEndEnumWindows
|
---|
| 1498 | #define WinEndEnumWindows _WinEndEnumWindows
|
---|
| 1499 |
|
---|
| 1500 | LONG APIENTRY _WinExcludeUpdateRegion(HPS a, HWND b);
|
---|
| 1501 |
|
---|
| 1502 | #undef WinExcludeUpdateRegion
|
---|
| 1503 | #define WinExcludeUpdateRegion _WinExcludeUpdateRegion
|
---|
| 1504 |
|
---|
| 1505 | HWND APIENTRY _WinGetNextWindow(HENUM a);
|
---|
| 1506 |
|
---|
| 1507 | #undef WinGetNextWindow
|
---|
| 1508 | #define WinGetNextWindow _WinGetNextWindow
|
---|
| 1509 |
|
---|
| 1510 | HPS APIENTRY _WinGetScreenPS(HWND a);
|
---|
| 1511 |
|
---|
| 1512 | #undef WinGetScreenPS
|
---|
| 1513 | #define WinGetScreenPS _WinGetScreenPS
|
---|
| 1514 |
|
---|
| 1515 | BOOL APIENTRY _WinIsThreadActive(HAB a);
|
---|
| 1516 |
|
---|
| 1517 | #undef WinIsThreadActive
|
---|
| 1518 | #define WinIsThreadActive _WinIsThreadActive
|
---|
| 1519 |
|
---|
| 1520 | BOOL APIENTRY _WinLockVisRegions(HWND a, BOOL b);
|
---|
| 1521 |
|
---|
| 1522 | #undef WinLockVisRegions
|
---|
| 1523 | #define WinLockVisRegions _WinLockVisRegions
|
---|
| 1524 |
|
---|
| 1525 | BOOL APIENTRY _WinLockWindowUpdate(HWND a, HWND b);
|
---|
| 1526 |
|
---|
| 1527 | #undef WinLockWindowUpdate
|
---|
| 1528 | #define WinLockWindowUpdate _WinLockWindowUpdate
|
---|
| 1529 |
|
---|
| 1530 | BOOL APIENTRY _WinMapWindowPoints(HWND a, HWND b, PPOINTL c, LONG d);
|
---|
| 1531 |
|
---|
| 1532 | #undef WinMapWindowPoints
|
---|
| 1533 | #define WinMapWindowPoints _WinMapWindowPoints
|
---|
| 1534 |
|
---|
| 1535 | HWND APIENTRY _WinQueryActiveWindow(HWND a);
|
---|
| 1536 |
|
---|
| 1537 | #undef WinQueryActiveWindow
|
---|
| 1538 | #define WinQueryActiveWindow _WinQueryActiveWindow
|
---|
| 1539 |
|
---|
| 1540 | BOOL APIENTRY _WinQueryClassInfo(HAB a, PCSZ b, PCLASSINFO c);
|
---|
| 1541 |
|
---|
| 1542 | #undef WinQueryClassInfo
|
---|
| 1543 | #define WinQueryClassInfo _WinQueryClassInfo
|
---|
| 1544 |
|
---|
| 1545 | LONG APIENTRY _WinQueryClassName(HWND a, LONG b, PCH c);
|
---|
| 1546 |
|
---|
| 1547 | #undef WinQueryClassName
|
---|
| 1548 | #define WinQueryClassName _WinQueryClassName
|
---|
| 1549 |
|
---|
| 1550 | BOOL APIENTRY _WinQueryUpdateRect(HWND a, PRECTL b);
|
---|
| 1551 |
|
---|
| 1552 | #undef WinQueryUpdateRect
|
---|
| 1553 | #define WinQueryUpdateRect _WinQueryUpdateRect
|
---|
| 1554 |
|
---|
| 1555 | LONG APIENTRY _WinQueryUpdateRegion(HWND a, HRGN b);
|
---|
| 1556 |
|
---|
| 1557 | #undef WinQueryUpdateRegion
|
---|
| 1558 | #define WinQueryUpdateRegion _WinQueryUpdateRegion
|
---|
| 1559 |
|
---|
| 1560 | HWND APIENTRY _WinQuerySysModalWindow(HWND a);
|
---|
| 1561 |
|
---|
| 1562 | #undef WinQuerySysModalWindow
|
---|
| 1563 | #define WinQuerySysModalWindow _WinQuerySysModalWindow
|
---|
| 1564 |
|
---|
| 1565 | HDC APIENTRY _WinQueryWindowDC(HWND a);
|
---|
| 1566 |
|
---|
| 1567 | #undef WinQueryWindowDC
|
---|
| 1568 | #define WinQueryWindowDC _WinQueryWindowDC
|
---|
| 1569 |
|
---|
| 1570 | PVOID APIENTRY _WinQueryWindowPtr(HWND a, LONG b);
|
---|
| 1571 |
|
---|
| 1572 | #undef WinQueryWindowPtr
|
---|
| 1573 | #define WinQueryWindowPtr _WinQueryWindowPtr
|
---|
| 1574 |
|
---|
| 1575 | ULONG APIENTRY _WinQueryWindowULong(HWND a, LONG b);
|
---|
| 1576 |
|
---|
| 1577 | #undef WinQueryWindowULong
|
---|
| 1578 | #define WinQueryWindowULong _WinQueryWindowULong
|
---|
| 1579 |
|
---|
| 1580 | USHORT APIENTRY _WinQueryWindowUShort(HWND a, LONG b);
|
---|
| 1581 |
|
---|
| 1582 | #undef WinQueryWindowUShort
|
---|
| 1583 | #define WinQueryWindowUShort _WinQueryWindowUShort
|
---|
| 1584 |
|
---|
| 1585 | BOOL APIENTRY _WinSetSysModalWindow(HWND a, HWND b);
|
---|
| 1586 |
|
---|
| 1587 | #undef WinSetSysModalWindow
|
---|
| 1588 | #define WinSetSysModalWindow _WinSetSysModalWindow
|
---|
| 1589 |
|
---|
| 1590 | BOOL APIENTRY _WinSetWindowBits(HWND a, LONG b, ULONG c, ULONG d);
|
---|
| 1591 |
|
---|
| 1592 | #undef WinSetWindowBits
|
---|
| 1593 | #define WinSetWindowBits _WinSetWindowBits
|
---|
| 1594 |
|
---|
| 1595 | BOOL APIENTRY _WinSetWindowPtr(HWND a, LONG b, PVOID c);
|
---|
| 1596 |
|
---|
| 1597 | #undef WinSetWindowPtr
|
---|
| 1598 | #define WinSetWindowPtr _WinSetWindowPtr
|
---|
| 1599 |
|
---|
| 1600 | BOOL APIENTRY _WinSetWindowULong(HWND a, LONG b, ULONG c);
|
---|
| 1601 |
|
---|
| 1602 | #undef WinSetWindowULong
|
---|
| 1603 | #define WinSetWindowULong _WinSetWindowULong
|
---|
| 1604 |
|
---|
| 1605 | BOOL APIENTRY _WinSetWindowUShort(HWND a, LONG b, USHORT c);
|
---|
| 1606 |
|
---|
| 1607 | #undef WinSetWindowUShort
|
---|
| 1608 | #define WinSetWindowUShort _WinSetWindowUShort
|
---|
| 1609 |
|
---|
| 1610 | PFNWP APIENTRY _WinSubclassWindow(HWND a, PFNWP b);
|
---|
| 1611 |
|
---|
| 1612 | #undef WinSubclassWindow
|
---|
| 1613 | #define WinSubclassWindow _WinSubclassWindow
|
---|
| 1614 |
|
---|
| 1615 | BOOL APIENTRY _WinValidateRect(HWND a, PRECTL b, BOOL c);
|
---|
| 1616 |
|
---|
| 1617 | #undef WinValidateRect
|
---|
| 1618 | #define WinValidateRect _WinValidateRect
|
---|
| 1619 |
|
---|
| 1620 | BOOL APIENTRY _WinValidateRegion(HWND a, HRGN b, BOOL c);
|
---|
| 1621 |
|
---|
| 1622 | #undef WinValidateRegion
|
---|
| 1623 | #define WinValidateRegion _WinValidateRegion
|
---|
| 1624 |
|
---|
| 1625 | HWND APIENTRY _WinWindowFromDC(HDC a);
|
---|
| 1626 |
|
---|
| 1627 | #undef WinWindowFromDC
|
---|
| 1628 | #define WinWindowFromDC _WinWindowFromDC
|
---|
| 1629 |
|
---|
| 1630 | HWND APIENTRY _WinWindowFromPoint(HWND a, PPOINTL b, BOOL c);
|
---|
| 1631 |
|
---|
| 1632 | #undef WinWindowFromPoint
|
---|
| 1633 | #define WinWindowFromPoint _WinWindowFromPoint
|
---|
| 1634 |
|
---|
| 1635 | #endif
|
---|
| 1636 | #ifdef INCL_WINACCELERATORS
|
---|
| 1637 | ULONG APIENTRY _WinCopyAccelTable(HACCEL a, PACCELTABLE b, ULONG c);
|
---|
| 1638 |
|
---|
| 1639 | #undef WinCopyAccelTable
|
---|
| 1640 | #define WinCopyAccelTable _WinCopyAccelTable
|
---|
| 1641 |
|
---|
| 1642 | HACCEL APIENTRY _WinCreateAccelTable(HAB a, PACCELTABLE b);
|
---|
| 1643 |
|
---|
| 1644 | #undef WinCreateAccelTable
|
---|
| 1645 | #define WinCreateAccelTable _WinCreateAccelTable
|
---|
| 1646 |
|
---|
| 1647 | BOOL APIENTRY _WinDestroyAccelTable(HACCEL a);
|
---|
| 1648 |
|
---|
| 1649 | #undef WinDestroyAccelTable
|
---|
| 1650 | #define WinDestroyAccelTable _WinDestroyAccelTable
|
---|
| 1651 |
|
---|
| 1652 | HACCEL APIENTRY _WinLoadAccelTable(HAB a, HMODULE b, ULONG c);
|
---|
| 1653 |
|
---|
| 1654 | #undef WinLoadAccelTable
|
---|
| 1655 | #define WinLoadAccelTable _WinLoadAccelTable
|
---|
| 1656 |
|
---|
| 1657 | HACCEL APIENTRY _WinQueryAccelTable(HAB a, HWND b);
|
---|
| 1658 |
|
---|
| 1659 | #undef WinQueryAccelTable
|
---|
| 1660 | #define WinQueryAccelTable _WinQueryAccelTable
|
---|
| 1661 |
|
---|
| 1662 | BOOL APIENTRY _WinSetAccelTable(HAB a, HACCEL b, HWND c);
|
---|
| 1663 |
|
---|
| 1664 | #undef WinSetAccelTable
|
---|
| 1665 | #define WinSetAccelTable _WinSetAccelTable
|
---|
| 1666 |
|
---|
| 1667 | BOOL APIENTRY _WinTranslateAccel(HAB a, HWND b, HACCEL c, PQMSG d);
|
---|
| 1668 |
|
---|
| 1669 | #undef WinTranslateAccel
|
---|
| 1670 | #define WinTranslateAccel _WinTranslateAccel
|
---|
| 1671 |
|
---|
| 1672 | #endif
|
---|
| 1673 | #ifdef INCL_WINATOM
|
---|
| 1674 | ATOM APIENTRY _WinAddAtom(HATOMTBL a, PCSZ b);
|
---|
| 1675 |
|
---|
| 1676 | #undef WinAddAtom
|
---|
| 1677 | #define WinAddAtom _WinAddAtom
|
---|
| 1678 |
|
---|
| 1679 | HATOMTBL APIENTRY _WinCreateAtomTable(ULONG a, ULONG b);
|
---|
| 1680 |
|
---|
| 1681 | #undef WinCreateAtomTable
|
---|
| 1682 | #define WinCreateAtomTable _WinCreateAtomTable
|
---|
| 1683 |
|
---|
| 1684 | ATOM APIENTRY _WinDeleteAtom(HATOMTBL a, ATOM b);
|
---|
| 1685 |
|
---|
| 1686 | #undef WinDeleteAtom
|
---|
| 1687 | #define WinDeleteAtom _WinDeleteAtom
|
---|
| 1688 |
|
---|
| 1689 | HATOMTBL APIENTRY _WinDestroyAtomTable(HATOMTBL a);
|
---|
| 1690 |
|
---|
| 1691 | #undef WinDestroyAtomTable
|
---|
| 1692 | #define WinDestroyAtomTable _WinDestroyAtomTable
|
---|
| 1693 |
|
---|
| 1694 | ATOM APIENTRY _WinFindAtom(HATOMTBL a, PCSZ b);
|
---|
| 1695 |
|
---|
| 1696 | #undef WinFindAtom
|
---|
| 1697 | #define WinFindAtom _WinFindAtom
|
---|
| 1698 |
|
---|
| 1699 | ULONG APIENTRY _WinQueryAtomLength(HATOMTBL a, ATOM b);
|
---|
| 1700 |
|
---|
| 1701 | #undef WinQueryAtomLength
|
---|
| 1702 | #define WinQueryAtomLength _WinQueryAtomLength
|
---|
| 1703 |
|
---|
| 1704 | ULONG APIENTRY _WinQueryAtomName(HATOMTBL a, ATOM b, PSZ c, ULONG d);
|
---|
| 1705 |
|
---|
| 1706 | #undef WinQueryAtomName
|
---|
| 1707 | #define WinQueryAtomName _WinQueryAtomName
|
---|
| 1708 |
|
---|
| 1709 | ULONG APIENTRY _WinQueryAtomUsage(HATOMTBL a, ATOM b);
|
---|
| 1710 |
|
---|
| 1711 | #undef WinQueryAtomUsage
|
---|
| 1712 | #define WinQueryAtomUsage _WinQueryAtomUsage
|
---|
| 1713 |
|
---|
| 1714 | HATOMTBL APIENTRY _WinQuerySystemAtomTable();
|
---|
| 1715 |
|
---|
| 1716 | #undef WinQuerySystemAtomTable
|
---|
| 1717 | #define WinQuerySystemAtomTable _WinQuerySystemAtomTable
|
---|
| 1718 |
|
---|
| 1719 | #endif
|
---|
| 1720 | #ifdef INCL_WINCLIPBOARD
|
---|
| 1721 | BOOL APIENTRY _WinCloseClipbrd(HAB a);
|
---|
| 1722 |
|
---|
| 1723 | #undef WinCloseClipbrd
|
---|
| 1724 | #define WinCloseClipbrd _WinCloseClipbrd
|
---|
| 1725 |
|
---|
| 1726 | BOOL APIENTRY _WinEmptyClipbrd(HAB a);
|
---|
| 1727 |
|
---|
| 1728 | #undef WinEmptyClipbrd
|
---|
| 1729 | #define WinEmptyClipbrd _WinEmptyClipbrd
|
---|
| 1730 |
|
---|
| 1731 | ULONG APIENTRY _WinEnumClipbrdFmts(HAB a, ULONG b);
|
---|
| 1732 |
|
---|
| 1733 | #undef WinEnumClipbrdFmts
|
---|
| 1734 | #define WinEnumClipbrdFmts _WinEnumClipbrdFmts
|
---|
| 1735 |
|
---|
| 1736 | BOOL APIENTRY _WinOpenClipbrd(HAB a);
|
---|
| 1737 |
|
---|
| 1738 | #undef WinOpenClipbrd
|
---|
| 1739 | #define WinOpenClipbrd _WinOpenClipbrd
|
---|
| 1740 |
|
---|
| 1741 | ULONG APIENTRY _WinQueryClipbrdData(HAB a, ULONG b);
|
---|
| 1742 |
|
---|
| 1743 | #undef WinQueryClipbrdData
|
---|
| 1744 | #define WinQueryClipbrdData _WinQueryClipbrdData
|
---|
| 1745 |
|
---|
| 1746 | BOOL APIENTRY _WinQueryClipbrdFmtInfo(HAB a, ULONG b, PULONG c);
|
---|
| 1747 |
|
---|
| 1748 | #undef WinQueryClipbrdFmtInfo
|
---|
| 1749 | #define WinQueryClipbrdFmtInfo _WinQueryClipbrdFmtInfo
|
---|
| 1750 |
|
---|
| 1751 | HWND APIENTRY _WinQueryClipbrdOwner(HAB a);
|
---|
| 1752 |
|
---|
| 1753 | #undef WinQueryClipbrdOwner
|
---|
| 1754 | #define WinQueryClipbrdOwner _WinQueryClipbrdOwner
|
---|
| 1755 |
|
---|
| 1756 | HWND APIENTRY _WinQueryClipbrdViewer(HAB a);
|
---|
| 1757 |
|
---|
| 1758 | #undef WinQueryClipbrdViewer
|
---|
| 1759 | #define WinQueryClipbrdViewer _WinQueryClipbrdViewer
|
---|
| 1760 |
|
---|
| 1761 | BOOL APIENTRY _WinSetClipbrdData(HAB a, ULONG b, ULONG c, ULONG d);
|
---|
| 1762 |
|
---|
| 1763 | #undef WinSetClipbrdData
|
---|
| 1764 | #define WinSetClipbrdData _WinSetClipbrdData
|
---|
| 1765 |
|
---|
| 1766 | BOOL APIENTRY _WinSetClipbrdOwner(HAB a, HWND b);
|
---|
| 1767 |
|
---|
| 1768 | #undef WinSetClipbrdOwner
|
---|
| 1769 | #define WinSetClipbrdOwner _WinSetClipbrdOwner
|
---|
| 1770 |
|
---|
| 1771 | BOOL APIENTRY _WinSetClipbrdViewer(HAB a, HWND b);
|
---|
| 1772 |
|
---|
| 1773 | #undef WinSetClipbrdViewer
|
---|
| 1774 | #define WinSetClipbrdViewer _WinSetClipbrdViewer
|
---|
| 1775 |
|
---|
| 1776 |
|
---|
| 1777 | BOOL APIENTRY __OpenClipbrd(HAB a, HWND b);
|
---|
| 1778 |
|
---|
| 1779 | #undef _OpenClipbrd
|
---|
| 1780 | #define _OpenClipbrd __OpenClipbrd
|
---|
| 1781 |
|
---|
| 1782 | BOOL APIENTRY _Win32AddClipbrdViewer(HWND a);
|
---|
| 1783 |
|
---|
| 1784 | #undef Win32AddClipbrdViewer
|
---|
| 1785 | #define Win32AddClipbrdViewer _Win32AddClipbrdViewer
|
---|
| 1786 |
|
---|
| 1787 | BOOL APIENTRY _Win32RemoveClipbrdViewer(HWND a);
|
---|
| 1788 |
|
---|
| 1789 | #undef Win32RemoveClipbrdViewer
|
---|
| 1790 | #define Win32RemoveClipbrdViewer _Win32RemoveClipbrdViewer
|
---|
| 1791 |
|
---|
| 1792 | HWND APIENTRY _Win32QueryClipbrdViewerChain();
|
---|
| 1793 |
|
---|
| 1794 | #undef Win32QueryClipbrdViewerChain
|
---|
| 1795 | #define Win32QueryClipbrdViewerChain _Win32QueryClipbrdViewerChain
|
---|
| 1796 |
|
---|
| 1797 | HWND APIENTRY _Win32QueryOpenClipbrdWindow();
|
---|
| 1798 |
|
---|
| 1799 | #undef Win32QueryOpenClipbrdWindow
|
---|
| 1800 | #define Win32QueryOpenClipbrdWindow _Win32QueryOpenClipbrdWindow
|
---|
| 1801 |
|
---|
| 1802 | #endif
|
---|
| 1803 | #ifdef INCL_WINDDE
|
---|
| 1804 | BOOL APIENTRY _WinDdeInitiate(HWND a, PCSZ b, PCSZ c, PCONVCONTEXT d);
|
---|
| 1805 |
|
---|
| 1806 | #undef WinDdeInitiate
|
---|
| 1807 | #define WinDdeInitiate _WinDdeInitiate
|
---|
| 1808 |
|
---|
| 1809 | BOOL APIENTRY _WinDdePostMsg(HWND a, HWND b, ULONG c, PDDESTRUCT d, ULONG e);
|
---|
| 1810 |
|
---|
| 1811 | #undef WinDdePostMsg
|
---|
| 1812 | #define WinDdePostMsg _WinDdePostMsg
|
---|
| 1813 |
|
---|
| 1814 | MRESULT APIENTRY _WinDdeRespond(HWND a, HWND b, PCSZ c, PCSZ d, PCONVCONTEXT e);
|
---|
| 1815 |
|
---|
| 1816 | #undef WinDdeRespond
|
---|
| 1817 | #define WinDdeRespond _WinDdeRespond
|
---|
| 1818 |
|
---|
| 1819 | #endif
|
---|
| 1820 | #ifdef INCL_WINCOUNTRY
|
---|
| 1821 | ULONG APIENTRY _WinCompareStrings(HAB a, ULONG b, ULONG c, PCSZ d, PCSZ e, ULONG f);
|
---|
| 1822 |
|
---|
| 1823 | #undef WinCompareStrings
|
---|
| 1824 | #define WinCompareStrings _WinCompareStrings
|
---|
| 1825 |
|
---|
| 1826 | UCHAR APIENTRY _WinCpTranslateChar(HAB a, ULONG b, UCHAR c, ULONG d);
|
---|
| 1827 |
|
---|
| 1828 | #undef WinCpTranslateChar
|
---|
| 1829 | #define WinCpTranslateChar _WinCpTranslateChar
|
---|
| 1830 |
|
---|
| 1831 | BOOL APIENTRY _WinCpTranslateString(HAB a, ULONG b, PCSZ c, ULONG d, ULONG e, PSZ f);
|
---|
| 1832 |
|
---|
| 1833 | #undef WinCpTranslateString
|
---|
| 1834 | #define WinCpTranslateString _WinCpTranslateString
|
---|
| 1835 |
|
---|
| 1836 | PCSZ APIENTRY _WinNextChar(HAB a, ULONG b, ULONG c, PCSZ d);
|
---|
| 1837 |
|
---|
| 1838 | #undef WinNextChar
|
---|
| 1839 | #define WinNextChar _WinNextChar
|
---|
| 1840 |
|
---|
| 1841 | PCSZ APIENTRY _WinPrevChar(HAB a, ULONG b, ULONG c, PCSZ d, PCSZ e);
|
---|
| 1842 |
|
---|
| 1843 | #undef WinPrevChar
|
---|
| 1844 | #define WinPrevChar _WinPrevChar
|
---|
| 1845 |
|
---|
| 1846 | ULONG APIENTRY _WinQueryCp(HMQ a);
|
---|
| 1847 |
|
---|
| 1848 | #undef WinQueryCp
|
---|
| 1849 | #define WinQueryCp _WinQueryCp
|
---|
| 1850 |
|
---|
| 1851 | ULONG APIENTRY _WinQueryCpList(HAB a, ULONG b, PULONG c);
|
---|
| 1852 |
|
---|
| 1853 | #undef WinQueryCpList
|
---|
| 1854 | #define WinQueryCpList _WinQueryCpList
|
---|
| 1855 |
|
---|
| 1856 | BOOL APIENTRY _WinSetCp(HMQ a, ULONG b);
|
---|
| 1857 |
|
---|
| 1858 | #undef WinSetCp
|
---|
| 1859 | #define WinSetCp _WinSetCp
|
---|
| 1860 |
|
---|
| 1861 | ULONG APIENTRY _WinUpper(HAB a, ULONG b, ULONG c, PSZ d);
|
---|
| 1862 |
|
---|
| 1863 | #undef WinUpper
|
---|
| 1864 | #define WinUpper _WinUpper
|
---|
| 1865 |
|
---|
| 1866 | ULONG APIENTRY _WinUpperChar(HAB a, ULONG b, ULONG c, ULONG d);
|
---|
| 1867 |
|
---|
| 1868 | #undef WinUpperChar
|
---|
| 1869 | #define WinUpperChar _WinUpperChar
|
---|
| 1870 |
|
---|
| 1871 | #endif
|
---|
| 1872 | #ifdef INCL_WINCURSORS
|
---|
| 1873 | BOOL APIENTRY _WinCreateCursor(HWND a, LONG b, LONG c, LONG d, LONG e, ULONG f, PRECTL g);
|
---|
| 1874 |
|
---|
| 1875 | #undef WinCreateCursor
|
---|
| 1876 | #define WinCreateCursor _WinCreateCursor
|
---|
| 1877 |
|
---|
| 1878 | BOOL APIENTRY _WinDestroyCursor(HWND a);
|
---|
| 1879 |
|
---|
| 1880 | #undef WinDestroyCursor
|
---|
| 1881 | #define WinDestroyCursor _WinDestroyCursor
|
---|
| 1882 |
|
---|
| 1883 | BOOL APIENTRY _WinShowCursor(HWND a, BOOL b);
|
---|
| 1884 |
|
---|
| 1885 | #undef WinShowCursor
|
---|
| 1886 | #define WinShowCursor _WinShowCursor
|
---|
| 1887 |
|
---|
| 1888 | BOOL APIENTRY _WinQueryCursorInfo(HWND a, PCURSORINFO b);
|
---|
| 1889 |
|
---|
| 1890 | #undef WinQueryCursorInfo
|
---|
| 1891 | #define WinQueryCursorInfo _WinQueryCursorInfo
|
---|
| 1892 |
|
---|
| 1893 | #endif
|
---|
| 1894 | #ifdef INCL_WINDESKTOP
|
---|
| 1895 | BOOL APIENTRY _WinQueryDesktopBkgnd(HWND a, PDESKTOP b);
|
---|
| 1896 |
|
---|
| 1897 | #undef WinQueryDesktopBkgnd
|
---|
| 1898 | #define WinQueryDesktopBkgnd _WinQueryDesktopBkgnd
|
---|
| 1899 |
|
---|
| 1900 | HBITMAP APIENTRY _WinSetDesktopBkgnd(HWND a, PDESKTOP b);
|
---|
| 1901 |
|
---|
| 1902 | #undef WinSetDesktopBkgnd
|
---|
| 1903 | #define WinSetDesktopBkgnd _WinSetDesktopBkgnd
|
---|
| 1904 |
|
---|
| 1905 | #endif
|
---|
| 1906 | #ifdef INCL_WINDIALOGS
|
---|
| 1907 | BOOL APIENTRY _WinAlarm(HWND a, ULONG b);
|
---|
| 1908 |
|
---|
| 1909 | #undef WinAlarm
|
---|
| 1910 | #define WinAlarm _WinAlarm
|
---|
| 1911 |
|
---|
| 1912 | MRESULT APIENTRY _WinDefDlgProc(HWND a, ULONG b, MPARAM c, MPARAM d);
|
---|
| 1913 |
|
---|
| 1914 | #undef WinDefDlgProc
|
---|
| 1915 | #define WinDefDlgProc _WinDefDlgProc
|
---|
| 1916 |
|
---|
| 1917 | BOOL APIENTRY _WinDismissDlg(HWND a, ULONG b);
|
---|
| 1918 |
|
---|
| 1919 | #undef WinDismissDlg
|
---|
| 1920 | #define WinDismissDlg _WinDismissDlg
|
---|
| 1921 |
|
---|
| 1922 | ULONG APIENTRY _WinDlgBox(HWND a, HWND b, PFNWP c, HMODULE d, ULONG e, PVOID f);
|
---|
| 1923 |
|
---|
| 1924 | #undef WinDlgBox
|
---|
| 1925 | #define WinDlgBox _WinDlgBox
|
---|
| 1926 |
|
---|
| 1927 | BOOL APIENTRY _WinGetDlgMsg(HWND a, PQMSG b);
|
---|
| 1928 |
|
---|
| 1929 | #undef WinGetDlgMsg
|
---|
| 1930 | #define WinGetDlgMsg _WinGetDlgMsg
|
---|
| 1931 |
|
---|
| 1932 | HWND APIENTRY _WinLoadDlg(HWND a, HWND b, PFNWP c, HMODULE d, ULONG e, PVOID f);
|
---|
| 1933 |
|
---|
| 1934 | #undef WinLoadDlg
|
---|
| 1935 | #define WinLoadDlg _WinLoadDlg
|
---|
| 1936 |
|
---|
| 1937 | ULONG APIENTRY _WinMessageBox(HWND a, HWND b, PCSZ c, PCSZ d, ULONG e, ULONG f);
|
---|
| 1938 |
|
---|
| 1939 | #undef WinMessageBox
|
---|
| 1940 | #define WinMessageBox _WinMessageBox
|
---|
| 1941 |
|
---|
| 1942 | ULONG APIENTRY _WinMessageBox2(HWND a, HWND b, PSZ c, PSZ d, ULONG e, PMB2INFO f);
|
---|
| 1943 |
|
---|
| 1944 | #undef WinMessageBox2
|
---|
| 1945 | #define WinMessageBox2 _WinMessageBox2
|
---|
| 1946 |
|
---|
| 1947 | BOOL APIENTRY _WinQueryDlgItemShort(HWND a, ULONG b, PSHORT c, BOOL d);
|
---|
| 1948 |
|
---|
| 1949 | #undef WinQueryDlgItemShort
|
---|
| 1950 | #define WinQueryDlgItemShort _WinQueryDlgItemShort
|
---|
| 1951 |
|
---|
| 1952 | ULONG APIENTRY _WinQueryDlgItemText(HWND a, ULONG b, LONG c, PSZ d);
|
---|
| 1953 |
|
---|
| 1954 | #undef WinQueryDlgItemText
|
---|
| 1955 | #define WinQueryDlgItemText _WinQueryDlgItemText
|
---|
| 1956 |
|
---|
| 1957 | LONG APIENTRY _WinQueryDlgItemTextLength(HWND a, ULONG b);
|
---|
| 1958 |
|
---|
| 1959 | #undef WinQueryDlgItemTextLength
|
---|
| 1960 | #define WinQueryDlgItemTextLength _WinQueryDlgItemTextLength
|
---|
| 1961 |
|
---|
| 1962 | BOOL APIENTRY _WinSetDlgItemShort(HWND a, ULONG b, USHORT c, BOOL d);
|
---|
| 1963 |
|
---|
| 1964 | #undef WinSetDlgItemShort
|
---|
| 1965 | #define WinSetDlgItemShort _WinSetDlgItemShort
|
---|
| 1966 |
|
---|
| 1967 | BOOL APIENTRY _WinSetDlgItemText(HWND a, ULONG b, PCSZ c);
|
---|
| 1968 |
|
---|
| 1969 | #undef WinSetDlgItemText
|
---|
| 1970 | #define WinSetDlgItemText _WinSetDlgItemText
|
---|
| 1971 |
|
---|
| 1972 | HWND APIENTRY _WinCreateDlg(HWND a, HWND b, PFNWP c, PDLGTEMPLATE d, PVOID e);
|
---|
| 1973 |
|
---|
| 1974 | #undef WinCreateDlg
|
---|
| 1975 | #define WinCreateDlg _WinCreateDlg
|
---|
| 1976 |
|
---|
| 1977 | HWND APIENTRY _WinEnumDlgItem(HWND a, HWND b, ULONG c);
|
---|
| 1978 |
|
---|
| 1979 | #undef WinEnumDlgItem
|
---|
| 1980 | #define WinEnumDlgItem _WinEnumDlgItem
|
---|
| 1981 |
|
---|
| 1982 | BOOL APIENTRY _WinMapDlgPoints(HWND a, PPOINTL b, ULONG c, BOOL d);
|
---|
| 1983 |
|
---|
| 1984 | #undef WinMapDlgPoints
|
---|
| 1985 | #define WinMapDlgPoints _WinMapDlgPoints
|
---|
| 1986 |
|
---|
| 1987 | ULONG APIENTRY _WinProcessDlg(HWND a);
|
---|
| 1988 |
|
---|
| 1989 | #undef WinProcessDlg
|
---|
| 1990 | #define WinProcessDlg _WinProcessDlg
|
---|
| 1991 |
|
---|
| 1992 | MRESULT APIENTRY _WinSendDlgItemMsg(HWND a, ULONG b, ULONG c, MPARAM d, MPARAM e);
|
---|
| 1993 |
|
---|
| 1994 | #undef WinSendDlgItemMsg
|
---|
| 1995 | #define WinSendDlgItemMsg _WinSendDlgItemMsg
|
---|
| 1996 |
|
---|
| 1997 | LONG APIENTRY _WinSubstituteStrings(HWND a, PCSZ b, LONG c, PSZ d);
|
---|
| 1998 |
|
---|
| 1999 | #undef WinSubstituteStrings
|
---|
| 2000 | #define WinSubstituteStrings _WinSubstituteStrings
|
---|
| 2001 |
|
---|
| 2002 | #endif
|
---|
| 2003 | #ifdef INCL_WINERRORS
|
---|
| 2004 | ERRORID APIENTRY _WinGetLastError(HAB a);
|
---|
| 2005 |
|
---|
| 2006 | #undef WinGetLastError
|
---|
| 2007 | #define WinGetLastError _WinGetLastError
|
---|
| 2008 |
|
---|
| 2009 | BOOL APIENTRY _WinFreeErrorInfo(PERRINFO a);
|
---|
| 2010 |
|
---|
| 2011 | #undef WinFreeErrorInfo
|
---|
| 2012 | #define WinFreeErrorInfo _WinFreeErrorInfo
|
---|
| 2013 |
|
---|
| 2014 | PERRINFO APIENTRY _WinGetErrorInfo(HAB a);
|
---|
| 2015 |
|
---|
| 2016 | #undef WinGetErrorInfo
|
---|
| 2017 | #define WinGetErrorInfo _WinGetErrorInfo
|
---|
| 2018 |
|
---|
| 2019 | #endif
|
---|
| 2020 | #ifdef INCL_WINHOOKS
|
---|
| 2021 | BOOL APIENTRY _WinCallMsgFilter(HAB a, PQMSG b, ULONG c);
|
---|
| 2022 |
|
---|
| 2023 | #undef WinCallMsgFilter
|
---|
| 2024 | #define WinCallMsgFilter _WinCallMsgFilter
|
---|
| 2025 |
|
---|
| 2026 | BOOL APIENTRY _WinReleaseHook(HAB a, HMQ b, LONG c, PFN d, HMODULE e);
|
---|
| 2027 |
|
---|
| 2028 | #undef WinReleaseHook
|
---|
| 2029 | #define WinReleaseHook _WinReleaseHook
|
---|
| 2030 |
|
---|
| 2031 | BOOL APIENTRY _WinSetHook(HAB a, HMQ b, LONG c, PFN d, HMODULE e);
|
---|
| 2032 |
|
---|
| 2033 | #undef WinSetHook
|
---|
| 2034 | #define WinSetHook _WinSetHook
|
---|
| 2035 |
|
---|
| 2036 | #endif
|
---|
| 2037 | #ifdef INCL_WININPUT
|
---|
| 2038 | BOOL APIENTRY _WinFocusChange(HWND a, HWND b, ULONG c);
|
---|
| 2039 |
|
---|
| 2040 | #undef WinFocusChange
|
---|
| 2041 | #define WinFocusChange _WinFocusChange
|
---|
| 2042 |
|
---|
| 2043 | BOOL APIENTRY _WinLockupSystem(HAB a);
|
---|
| 2044 |
|
---|
| 2045 | #undef WinLockupSystem
|
---|
| 2046 | #define WinLockupSystem _WinLockupSystem
|
---|
| 2047 |
|
---|
| 2048 | BOOL APIENTRY _WinSetFocus(HWND a, HWND b);
|
---|
| 2049 |
|
---|
| 2050 | #undef WinSetFocus
|
---|
| 2051 | #define WinSetFocus _WinSetFocus
|
---|
| 2052 |
|
---|
| 2053 | BOOL APIENTRY _WinUnlockSystem(HAB a, PSZ b);
|
---|
| 2054 |
|
---|
| 2055 | #undef WinUnlockSystem
|
---|
| 2056 | #define WinUnlockSystem _WinUnlockSystem
|
---|
| 2057 |
|
---|
| 2058 | BOOL APIENTRY _WinCheckInput(HAB a);
|
---|
| 2059 |
|
---|
| 2060 | #undef WinCheckInput
|
---|
| 2061 | #define WinCheckInput _WinCheckInput
|
---|
| 2062 |
|
---|
| 2063 | BOOL APIENTRY _WinEnablePhysInput(HWND a, BOOL b);
|
---|
| 2064 |
|
---|
| 2065 | #undef WinEnablePhysInput
|
---|
| 2066 | #define WinEnablePhysInput _WinEnablePhysInput
|
---|
| 2067 |
|
---|
| 2068 | LONG APIENTRY _WinGetKeyState(HWND a, LONG b);
|
---|
| 2069 |
|
---|
| 2070 | #undef WinGetKeyState
|
---|
| 2071 | #define WinGetKeyState _WinGetKeyState
|
---|
| 2072 |
|
---|
| 2073 | LONG APIENTRY _WinGetPhysKeyState(HWND a, LONG b);
|
---|
| 2074 |
|
---|
| 2075 | #undef WinGetPhysKeyState
|
---|
| 2076 | #define WinGetPhysKeyState _WinGetPhysKeyState
|
---|
| 2077 |
|
---|
| 2078 | BOOL APIENTRY _WinIsPhysInputEnabled(HWND a);
|
---|
| 2079 |
|
---|
| 2080 | #undef WinIsPhysInputEnabled
|
---|
| 2081 | #define WinIsPhysInputEnabled _WinIsPhysInputEnabled
|
---|
| 2082 |
|
---|
| 2083 | HWND APIENTRY _WinQueryCapture(HWND a);
|
---|
| 2084 |
|
---|
| 2085 | #undef WinQueryCapture
|
---|
| 2086 | #define WinQueryCapture _WinQueryCapture
|
---|
| 2087 |
|
---|
| 2088 | HWND APIENTRY _WinQueryFocus(HWND a);
|
---|
| 2089 |
|
---|
| 2090 | #undef WinQueryFocus
|
---|
| 2091 | #define WinQueryFocus _WinQueryFocus
|
---|
| 2092 |
|
---|
| 2093 | ULONG APIENTRY _WinQueryVisibleRegion(HWND a, HRGN b);
|
---|
| 2094 |
|
---|
| 2095 | #undef WinQueryVisibleRegion
|
---|
| 2096 | #define WinQueryVisibleRegion _WinQueryVisibleRegion
|
---|
| 2097 |
|
---|
| 2098 | BOOL APIENTRY _WinSetCapture(HWND a, HWND b);
|
---|
| 2099 |
|
---|
| 2100 | #undef WinSetCapture
|
---|
| 2101 | #define WinSetCapture _WinSetCapture
|
---|
| 2102 |
|
---|
| 2103 | BOOL APIENTRY _WinSetKeyboardStateTable(HWND a, PBYTE b, BOOL c);
|
---|
| 2104 |
|
---|
| 2105 | #undef WinSetKeyboardStateTable
|
---|
| 2106 | #define WinSetKeyboardStateTable _WinSetKeyboardStateTable
|
---|
| 2107 |
|
---|
| 2108 | BOOL APIENTRY _WinSetVisibleRegionNotify(HWND a, BOOL b);
|
---|
| 2109 |
|
---|
| 2110 | #undef WinSetVisibleRegionNotify
|
---|
| 2111 | #define WinSetVisibleRegionNotify _WinSetVisibleRegionNotify
|
---|
| 2112 |
|
---|
| 2113 | #endif
|
---|
| 2114 | #ifdef INCL_WINLOAD
|
---|
| 2115 | BOOL APIENTRY _WinDeleteLibrary(HAB a, HLIB b);
|
---|
| 2116 |
|
---|
| 2117 | #undef WinDeleteLibrary
|
---|
| 2118 | #define WinDeleteLibrary _WinDeleteLibrary
|
---|
| 2119 |
|
---|
| 2120 | BOOL APIENTRY _WinDeleteProcedure(HAB a, PFNWP b);
|
---|
| 2121 |
|
---|
| 2122 | #undef WinDeleteProcedure
|
---|
| 2123 | #define WinDeleteProcedure _WinDeleteProcedure
|
---|
| 2124 |
|
---|
| 2125 | HLIB APIENTRY _WinLoadLibrary(HAB a, PCSZ b);
|
---|
| 2126 |
|
---|
| 2127 | #undef WinLoadLibrary
|
---|
| 2128 | #define WinLoadLibrary _WinLoadLibrary
|
---|
| 2129 |
|
---|
| 2130 | PFNWP APIENTRY _WinLoadProcedure(HAB a, HLIB b, PSZ c);
|
---|
| 2131 |
|
---|
| 2132 | #undef WinLoadProcedure
|
---|
| 2133 | #define WinLoadProcedure _WinLoadProcedure
|
---|
| 2134 |
|
---|
| 2135 | #endif
|
---|
| 2136 | #ifdef INCL_WINMENUS
|
---|
| 2137 | HWND APIENTRY _WinCreateMenu(HWND a, PVOID b);
|
---|
| 2138 |
|
---|
| 2139 | #undef WinCreateMenu
|
---|
| 2140 | #define WinCreateMenu _WinCreateMenu
|
---|
| 2141 |
|
---|
| 2142 | HWND APIENTRY _WinLoadMenu(HWND a, HMODULE b, ULONG c);
|
---|
| 2143 |
|
---|
| 2144 | #undef WinLoadMenu
|
---|
| 2145 | #define WinLoadMenu _WinLoadMenu
|
---|
| 2146 |
|
---|
| 2147 | BOOL APIENTRY _WinPopupMenu(HWND a, HWND b, HWND c, LONG d, LONG e, LONG f, ULONG g);
|
---|
| 2148 |
|
---|
| 2149 | #undef WinPopupMenu
|
---|
| 2150 | #define WinPopupMenu _WinPopupMenu
|
---|
| 2151 |
|
---|
| 2152 | #endif
|
---|
| 2153 | #ifdef INCL_WINMESSAGEMGR
|
---|
| 2154 | BOOL APIENTRY _WinBroadcastMsg(HWND a, ULONG b, MPARAM c, MPARAM d, ULONG e);
|
---|
| 2155 |
|
---|
| 2156 | #undef WinBroadcastMsg
|
---|
| 2157 | #define WinBroadcastMsg _WinBroadcastMsg
|
---|
| 2158 |
|
---|
| 2159 | BOOL APIENTRY _WinInSendMsg(HAB a);
|
---|
| 2160 |
|
---|
| 2161 | #undef WinInSendMsg
|
---|
| 2162 | #define WinInSendMsg _WinInSendMsg
|
---|
| 2163 |
|
---|
| 2164 | BOOL APIENTRY _WinPostQueueMsg(HMQ a, ULONG b, MPARAM c, MPARAM d);
|
---|
| 2165 |
|
---|
| 2166 | #undef WinPostQueueMsg
|
---|
| 2167 | #define WinPostQueueMsg _WinPostQueueMsg
|
---|
| 2168 |
|
---|
| 2169 | BOOL APIENTRY _WinQueryMsgPos(HAB a, PPOINTL b);
|
---|
| 2170 |
|
---|
| 2171 | #undef WinQueryMsgPos
|
---|
| 2172 | #define WinQueryMsgPos _WinQueryMsgPos
|
---|
| 2173 |
|
---|
| 2174 | ULONG APIENTRY _WinQueryMsgTime(HAB a);
|
---|
| 2175 |
|
---|
| 2176 | #undef WinQueryMsgTime
|
---|
| 2177 | #define WinQueryMsgTime _WinQueryMsgTime
|
---|
| 2178 |
|
---|
| 2179 | ULONG APIENTRY _WinQueryQueueStatus(HWND a);
|
---|
| 2180 |
|
---|
| 2181 | #undef WinQueryQueueStatus
|
---|
| 2182 | #define WinQueryQueueStatus _WinQueryQueueStatus
|
---|
| 2183 |
|
---|
| 2184 | ULONG APIENTRY _WinRequestMutexSem(HMTX a, ULONG b);
|
---|
| 2185 |
|
---|
| 2186 | #undef WinRequestMutexSem
|
---|
| 2187 | #define WinRequestMutexSem _WinRequestMutexSem
|
---|
| 2188 |
|
---|
| 2189 | BOOL APIENTRY _WinSetClassMsgInterest(HAB a, PCSZ b, ULONG c, LONG d);
|
---|
| 2190 |
|
---|
| 2191 | #undef WinSetClassMsgInterest
|
---|
| 2192 | #define WinSetClassMsgInterest _WinSetClassMsgInterest
|
---|
| 2193 |
|
---|
| 2194 | BOOL APIENTRY _WinSetMsgInterest(HWND a, ULONG b, LONG c);
|
---|
| 2195 |
|
---|
| 2196 | #undef WinSetMsgInterest
|
---|
| 2197 | #define WinSetMsgInterest _WinSetMsgInterest
|
---|
| 2198 |
|
---|
| 2199 | ULONG APIENTRY _WinWaitEventSem(HEV a, ULONG b);
|
---|
| 2200 |
|
---|
| 2201 | #undef WinWaitEventSem
|
---|
| 2202 | #define WinWaitEventSem _WinWaitEventSem
|
---|
| 2203 |
|
---|
| 2204 | BOOL APIENTRY _WinWaitMsg(HAB a, ULONG b, ULONG c);
|
---|
| 2205 |
|
---|
| 2206 | #undef WinWaitMsg
|
---|
| 2207 | #define WinWaitMsg _WinWaitMsg
|
---|
| 2208 |
|
---|
| 2209 | ULONG APIENTRY _WinWaitMuxWaitSem(HMUX a, ULONG b, PULONG c);
|
---|
| 2210 |
|
---|
| 2211 | #undef WinWaitMuxWaitSem
|
---|
| 2212 | #define WinWaitMuxWaitSem _WinWaitMuxWaitSem
|
---|
| 2213 |
|
---|
| 2214 | #endif
|
---|
| 2215 | #ifdef INCL_WINPALETTE
|
---|
| 2216 | LONG APIENTRY _WinRealizePalette(HWND a, HPS b, PULONG c);
|
---|
| 2217 |
|
---|
| 2218 | #undef WinRealizePalette
|
---|
| 2219 | #define WinRealizePalette _WinRealizePalette
|
---|
| 2220 |
|
---|
| 2221 | #endif
|
---|
| 2222 | #ifdef INCL_WINPOINTERS
|
---|
| 2223 | HPOINTER APIENTRY _WinCreatePointer(HWND a, HBITMAP b, BOOL c, LONG d, LONG e);
|
---|
| 2224 |
|
---|
| 2225 | #undef WinCreatePointer
|
---|
| 2226 | #define WinCreatePointer _WinCreatePointer
|
---|
| 2227 |
|
---|
| 2228 | HPOINTER APIENTRY _WinCreatePointerIndirect(HWND a, PPOINTERINFO b);
|
---|
| 2229 |
|
---|
| 2230 | #undef WinCreatePointerIndirect
|
---|
| 2231 | #define WinCreatePointerIndirect _WinCreatePointerIndirect
|
---|
| 2232 |
|
---|
| 2233 | BOOL APIENTRY _WinDestroyPointer(HPOINTER a);
|
---|
| 2234 |
|
---|
| 2235 | #undef WinDestroyPointer
|
---|
| 2236 | #define WinDestroyPointer _WinDestroyPointer
|
---|
| 2237 |
|
---|
| 2238 | BOOL APIENTRY _WinDrawPointer(HPS a, LONG b, LONG c, HPOINTER d, ULONG e);
|
---|
| 2239 |
|
---|
| 2240 | #undef WinDrawPointer
|
---|
| 2241 | #define WinDrawPointer _WinDrawPointer
|
---|
| 2242 |
|
---|
| 2243 | HBITMAP APIENTRY _WinGetSysBitmap(HWND a, ULONG b);
|
---|
| 2244 |
|
---|
| 2245 | #undef WinGetSysBitmap
|
---|
| 2246 | #define WinGetSysBitmap _WinGetSysBitmap
|
---|
| 2247 |
|
---|
| 2248 | HPOINTER APIENTRY _WinLoadPointer(HWND a, HMODULE b, ULONG c);
|
---|
| 2249 |
|
---|
| 2250 | #undef WinLoadPointer
|
---|
| 2251 | #define WinLoadPointer _WinLoadPointer
|
---|
| 2252 |
|
---|
| 2253 | BOOL APIENTRY _WinLockPointerUpdate(HWND a, HPOINTER b, ULONG c);
|
---|
| 2254 |
|
---|
| 2255 | #undef WinLockPointerUpdate
|
---|
| 2256 | #define WinLockPointerUpdate _WinLockPointerUpdate
|
---|
| 2257 |
|
---|
| 2258 | BOOL APIENTRY _WinQueryPointerPos(HWND a, PPOINTL b);
|
---|
| 2259 |
|
---|
| 2260 | #undef WinQueryPointerPos
|
---|
| 2261 | #define WinQueryPointerPos _WinQueryPointerPos
|
---|
| 2262 |
|
---|
| 2263 | BOOL APIENTRY _WinQueryPointerInfo(HPOINTER a, PPOINTERINFO b);
|
---|
| 2264 |
|
---|
| 2265 | #undef WinQueryPointerInfo
|
---|
| 2266 | #define WinQueryPointerInfo _WinQueryPointerInfo
|
---|
| 2267 |
|
---|
| 2268 | HPOINTER APIENTRY _WinQuerySysPointer(HWND a, LONG b, BOOL c);
|
---|
| 2269 |
|
---|
| 2270 | #undef WinQuerySysPointer
|
---|
| 2271 | #define WinQuerySysPointer _WinQuerySysPointer
|
---|
| 2272 |
|
---|
| 2273 | BOOL APIENTRY _WinQuerySysPointerData(HWND a, ULONG b, PICONINFO c);
|
---|
| 2274 |
|
---|
| 2275 | #undef WinQuerySysPointerData
|
---|
| 2276 | #define WinQuerySysPointerData _WinQuerySysPointerData
|
---|
| 2277 |
|
---|
| 2278 | BOOL APIENTRY _WinSetPointer(HWND a, HPOINTER b);
|
---|
| 2279 |
|
---|
| 2280 | #undef WinSetPointer
|
---|
| 2281 | #define WinSetPointer _WinSetPointer
|
---|
| 2282 |
|
---|
| 2283 | BOOL APIENTRY _WinSetPointerOwner(HPOINTER a, PID b, BOOL c);
|
---|
| 2284 |
|
---|
| 2285 | #undef WinSetPointerOwner
|
---|
| 2286 | #define WinSetPointerOwner _WinSetPointerOwner
|
---|
| 2287 |
|
---|
| 2288 | BOOL APIENTRY _WinSetPointerPos(HWND a, LONG b, LONG c);
|
---|
| 2289 |
|
---|
| 2290 | #undef WinSetPointerPos
|
---|
| 2291 | #define WinSetPointerPos _WinSetPointerPos
|
---|
| 2292 |
|
---|
| 2293 | BOOL APIENTRY _WinSetSysPointerData(HWND a, ULONG b, PICONINFO c);
|
---|
| 2294 |
|
---|
| 2295 | #undef WinSetSysPointerData
|
---|
| 2296 | #define WinSetSysPointerData _WinSetSysPointerData
|
---|
| 2297 |
|
---|
| 2298 | BOOL APIENTRY _WinShowPointer(HWND a, BOOL b);
|
---|
| 2299 |
|
---|
| 2300 | #undef WinShowPointer
|
---|
| 2301 | #define WinShowPointer _WinShowPointer
|
---|
| 2302 |
|
---|
| 2303 | #endif
|
---|
| 2304 | #ifdef INCL_WINRECTANGLES
|
---|
| 2305 | BOOL APIENTRY _WinCopyRect(HAB a, PRECTL b, PRECTL c);
|
---|
| 2306 |
|
---|
| 2307 | #undef WinCopyRect
|
---|
| 2308 | #define WinCopyRect _WinCopyRect
|
---|
| 2309 |
|
---|
| 2310 | BOOL APIENTRY _WinEqualRect(HAB a, PRECTL b, PRECTL c);
|
---|
| 2311 |
|
---|
| 2312 | #undef WinEqualRect
|
---|
| 2313 | #define WinEqualRect _WinEqualRect
|
---|
| 2314 |
|
---|
| 2315 | BOOL APIENTRY _WinInflateRect(HAB a, PRECTL b, LONG c, LONG d);
|
---|
| 2316 |
|
---|
| 2317 | #undef WinInflateRect
|
---|
| 2318 | #define WinInflateRect _WinInflateRect
|
---|
| 2319 |
|
---|
| 2320 | BOOL APIENTRY _WinIntersectRect(HAB a, PRECTL b, PRECTL c, PRECTL d);
|
---|
| 2321 |
|
---|
| 2322 | #undef WinIntersectRect
|
---|
| 2323 | #define WinIntersectRect _WinIntersectRect
|
---|
| 2324 |
|
---|
| 2325 | BOOL APIENTRY _WinIsRectEmpty(HAB a, PRECTL b);
|
---|
| 2326 |
|
---|
| 2327 | #undef WinIsRectEmpty
|
---|
| 2328 | #define WinIsRectEmpty _WinIsRectEmpty
|
---|
| 2329 |
|
---|
| 2330 | BOOL APIENTRY _WinMakePoints(HAB a, PPOINTL b, ULONG c);
|
---|
| 2331 |
|
---|
| 2332 | #undef WinMakePoints
|
---|
| 2333 | #define WinMakePoints _WinMakePoints
|
---|
| 2334 |
|
---|
| 2335 | BOOL APIENTRY _WinMakeRect(HAB a, PRECTL b);
|
---|
| 2336 |
|
---|
| 2337 | #undef WinMakeRect
|
---|
| 2338 | #define WinMakeRect _WinMakeRect
|
---|
| 2339 |
|
---|
| 2340 | BOOL APIENTRY _WinOffsetRect(HAB a, PRECTL b, LONG c, LONG d);
|
---|
| 2341 |
|
---|
| 2342 | #undef WinOffsetRect
|
---|
| 2343 | #define WinOffsetRect _WinOffsetRect
|
---|
| 2344 |
|
---|
| 2345 | BOOL APIENTRY _WinPtInRect(HAB a, PRECTL b, PPOINTL c);
|
---|
| 2346 |
|
---|
| 2347 | #undef WinPtInRect
|
---|
| 2348 | #define WinPtInRect _WinPtInRect
|
---|
| 2349 |
|
---|
| 2350 | BOOL APIENTRY _WinSetRect(HAB a, PRECTL b, LONG c, LONG d, LONG e, LONG f);
|
---|
| 2351 |
|
---|
| 2352 | #undef WinSetRect
|
---|
| 2353 | #define WinSetRect _WinSetRect
|
---|
| 2354 |
|
---|
| 2355 | BOOL APIENTRY _WinSetRectEmpty(HAB a, PRECTL b);
|
---|
| 2356 |
|
---|
| 2357 | #undef WinSetRectEmpty
|
---|
| 2358 | #define WinSetRectEmpty _WinSetRectEmpty
|
---|
| 2359 |
|
---|
| 2360 | BOOL APIENTRY _WinSubtractRect(HAB a, PRECTL b, PRECTL c, PRECTL d);
|
---|
| 2361 |
|
---|
| 2362 | #undef WinSubtractRect
|
---|
| 2363 | #define WinSubtractRect _WinSubtractRect
|
---|
| 2364 |
|
---|
| 2365 | BOOL APIENTRY _WinUnionRect(HAB a, PRECTL b, PRECTL c, PRECTL d);
|
---|
| 2366 |
|
---|
| 2367 | #undef WinUnionRect
|
---|
| 2368 | #define WinUnionRect _WinUnionRect
|
---|
| 2369 |
|
---|
| 2370 | #endif
|
---|
| 2371 | #ifdef INCL_WINSYS
|
---|
| 2372 | LONG APIENTRY _WinQueryControlColors(HWND a, LONG b, ULONG c, ULONG d, PCTLCOLOR e);
|
---|
| 2373 |
|
---|
| 2374 | #undef WinQueryControlColors
|
---|
| 2375 | #define WinQueryControlColors _WinQueryControlColors
|
---|
| 2376 |
|
---|
| 2377 | ULONG APIENTRY _WinQueryPresParam(HWND a, ULONG b, ULONG c, PULONG d, ULONG e, PVOID f, ULONG g);
|
---|
| 2378 |
|
---|
| 2379 | #undef WinQueryPresParam
|
---|
| 2380 | #define WinQueryPresParam _WinQueryPresParam
|
---|
| 2381 |
|
---|
| 2382 | LONG APIENTRY _WinQuerySysColor(HWND a, LONG b, LONG c);
|
---|
| 2383 |
|
---|
| 2384 | #undef WinQuerySysColor
|
---|
| 2385 | #define WinQuerySysColor _WinQuerySysColor
|
---|
| 2386 |
|
---|
| 2387 | LONG APIENTRY _WinQuerySysValue(HWND a, LONG b);
|
---|
| 2388 |
|
---|
| 2389 | #undef WinQuerySysValue
|
---|
| 2390 | #define WinQuerySysValue _WinQuerySysValue
|
---|
| 2391 |
|
---|
| 2392 | BOOL APIENTRY _WinRemovePresParam(HWND a, ULONG b);
|
---|
| 2393 |
|
---|
| 2394 | #undef WinRemovePresParam
|
---|
| 2395 | #define WinRemovePresParam _WinRemovePresParam
|
---|
| 2396 |
|
---|
| 2397 | LONG APIENTRY _WinSetControlColors(HWND a, LONG b, ULONG c, ULONG d, PCTLCOLOR e);
|
---|
| 2398 |
|
---|
| 2399 | #undef WinSetControlColors
|
---|
| 2400 | #define WinSetControlColors _WinSetControlColors
|
---|
| 2401 |
|
---|
| 2402 | BOOL APIENTRY _WinSetPresParam(HWND a, ULONG b, ULONG c, PVOID d);
|
---|
| 2403 |
|
---|
| 2404 | #undef WinSetPresParam
|
---|
| 2405 | #define WinSetPresParam _WinSetPresParam
|
---|
| 2406 |
|
---|
| 2407 | BOOL APIENTRY _WinSetSysColors(HWND a, ULONG b, ULONG c, LONG d, ULONG e, PLONG f);
|
---|
| 2408 |
|
---|
| 2409 | #undef WinSetSysColors
|
---|
| 2410 | #define WinSetSysColors _WinSetSysColors
|
---|
| 2411 |
|
---|
| 2412 | BOOL APIENTRY _WinSetSysValue(HWND a, LONG b, LONG c);
|
---|
| 2413 |
|
---|
| 2414 | #undef WinSetSysValue
|
---|
| 2415 | #define WinSetSysValue _WinSetSysValue
|
---|
| 2416 |
|
---|
| 2417 | #endif
|
---|
| 2418 | #ifdef INCL_WINTHUNKAPI
|
---|
| 2419 | PFN APIENTRY _WinQueryClassThunkProc(PCSZ a);
|
---|
| 2420 |
|
---|
| 2421 | #undef WinQueryClassThunkProc
|
---|
| 2422 | #define WinQueryClassThunkProc _WinQueryClassThunkProc
|
---|
| 2423 |
|
---|
| 2424 | LONG APIENTRY _WinQueryWindowModel(HWND a);
|
---|
| 2425 |
|
---|
| 2426 | #undef WinQueryWindowModel
|
---|
| 2427 | #define WinQueryWindowModel _WinQueryWindowModel
|
---|
| 2428 |
|
---|
| 2429 | PFN APIENTRY _WinQueryWindowThunkProc(HWND a);
|
---|
| 2430 |
|
---|
| 2431 | #undef WinQueryWindowThunkProc
|
---|
| 2432 | #define WinQueryWindowThunkProc _WinQueryWindowThunkProc
|
---|
| 2433 |
|
---|
| 2434 | BOOL APIENTRY _WinSetClassThunkProc(PCSZ a, PFN b);
|
---|
| 2435 |
|
---|
| 2436 | #undef WinSetClassThunkProc
|
---|
| 2437 | #define WinSetClassThunkProc _WinSetClassThunkProc
|
---|
| 2438 |
|
---|
| 2439 | BOOL APIENTRY _WinSetWindowThunkProc(HWND a, PFN b);
|
---|
| 2440 |
|
---|
| 2441 | #undef WinSetWindowThunkProc
|
---|
| 2442 | #define WinSetWindowThunkProc _WinSetWindowThunkProc
|
---|
| 2443 |
|
---|
| 2444 | #endif
|
---|
| 2445 | #ifdef INCL_WINTIMER
|
---|
| 2446 | ULONG APIENTRY _WinGetCurrentTime(HAB a);
|
---|
| 2447 |
|
---|
| 2448 | #undef WinGetCurrentTime
|
---|
| 2449 | #define WinGetCurrentTime _WinGetCurrentTime
|
---|
| 2450 |
|
---|
| 2451 | ULONG APIENTRY _WinStartTimer(HAB a, HWND b, ULONG c, ULONG d);
|
---|
| 2452 |
|
---|
| 2453 | #undef WinStartTimer
|
---|
| 2454 | #define WinStartTimer _WinStartTimer
|
---|
| 2455 |
|
---|
| 2456 | BOOL APIENTRY _WinStopTimer(HAB a, HWND b, ULONG c);
|
---|
| 2457 |
|
---|
| 2458 | #undef WinStopTimer
|
---|
| 2459 | #define WinStopTimer _WinStopTimer
|
---|
| 2460 |
|
---|
| 2461 | #endif
|
---|
| 2462 | #ifdef INCL_WINTRACKRECT
|
---|
| 2463 | BOOL APIENTRY _WinShowTrackRect(HWND a, BOOL b);
|
---|
| 2464 |
|
---|
| 2465 | #undef WinShowTrackRect
|
---|
| 2466 | #define WinShowTrackRect _WinShowTrackRect
|
---|
| 2467 |
|
---|
| 2468 | BOOL APIENTRY _WinTrackRect(HWND a, HPS b, PTRACKINFO c);
|
---|
| 2469 |
|
---|
| 2470 | #undef WinTrackRect
|
---|
| 2471 | #define WinTrackRect _WinTrackRect
|
---|
| 2472 |
|
---|
| 2473 | #endif
|
---|
| 2474 | #endif
|
---|
| 2475 | #ifdef INCL_GPI
|
---|
| 2476 | LONG APIENTRY _GpiAnimatePalette(HPAL a, ULONG b, ULONG c, ULONG d, PULONG e);
|
---|
| 2477 |
|
---|
| 2478 | #undef GpiAnimatePalette
|
---|
| 2479 | #define GpiAnimatePalette _GpiAnimatePalette
|
---|
| 2480 |
|
---|
| 2481 | BOOL APIENTRY _GpiBeginArea(HPS a, ULONG b);
|
---|
| 2482 |
|
---|
| 2483 | #undef GpiBeginArea
|
---|
| 2484 | #define GpiBeginArea _GpiBeginArea
|
---|
| 2485 |
|
---|
| 2486 | BOOL APIENTRY _GpiBeginElement(HPS a, LONG b, PCSZ c);
|
---|
| 2487 |
|
---|
| 2488 | #undef GpiBeginElement
|
---|
| 2489 | #define GpiBeginElement _GpiBeginElement
|
---|
| 2490 |
|
---|
| 2491 | BOOL APIENTRY _GpiBeginPath(HPS a, LONG b);
|
---|
| 2492 |
|
---|
| 2493 | #undef GpiBeginPath
|
---|
| 2494 | #define GpiBeginPath _GpiBeginPath
|
---|
| 2495 |
|
---|
| 2496 | LONG APIENTRY _GpiBox(HPS a, LONG b, PPOINTL c, LONG d, LONG e);
|
---|
| 2497 |
|
---|
| 2498 | #undef GpiBox
|
---|
| 2499 | #define GpiBox _GpiBox
|
---|
| 2500 |
|
---|
| 2501 | LONG APIENTRY _GpiCallSegmentMatrix(HPS a, LONG b, LONG c, PMATRIXLF d, LONG e);
|
---|
| 2502 |
|
---|
| 2503 | #undef GpiCallSegmentMatrix
|
---|
| 2504 | #define GpiCallSegmentMatrix _GpiCallSegmentMatrix
|
---|
| 2505 |
|
---|
| 2506 | LONG APIENTRY _GpiCharString(HPS a, LONG b, PCH c);
|
---|
| 2507 |
|
---|
| 2508 | #undef GpiCharString
|
---|
| 2509 | #define GpiCharString _GpiCharString
|
---|
| 2510 |
|
---|
| 2511 | LONG APIENTRY _GpiCharStringAt(HPS a, PPOINTL b, LONG c, PCH d);
|
---|
| 2512 |
|
---|
| 2513 | #undef GpiCharStringAt
|
---|
| 2514 | #define GpiCharStringAt _GpiCharStringAt
|
---|
| 2515 |
|
---|
| 2516 | LONG APIENTRY _GpiCharStringPos(HPS a, PRECTL b, ULONG c, LONG d, PCH e, PLONG f);
|
---|
| 2517 |
|
---|
| 2518 | #undef GpiCharStringPos
|
---|
| 2519 | #define GpiCharStringPos _GpiCharStringPos
|
---|
| 2520 |
|
---|
| 2521 | LONG APIENTRY _GpiCharStringPosAt(HPS a, PPOINTL b, PRECTL c, ULONG d, LONG e, PCH f, PLONG g);
|
---|
| 2522 |
|
---|
| 2523 | #undef GpiCharStringPosAt
|
---|
| 2524 | #define GpiCharStringPosAt _GpiCharStringPosAt
|
---|
| 2525 |
|
---|
| 2526 | BOOL APIENTRY _GpiCloseFigure(HPS a);
|
---|
| 2527 |
|
---|
| 2528 | #undef GpiCloseFigure
|
---|
| 2529 | #define GpiCloseFigure _GpiCloseFigure
|
---|
| 2530 |
|
---|
| 2531 | LONG APIENTRY _GpiCombineRegion(HPS a, HRGN b, HRGN c, HRGN d, LONG e);
|
---|
| 2532 |
|
---|
| 2533 | #undef GpiCombineRegion
|
---|
| 2534 | #define GpiCombineRegion _GpiCombineRegion
|
---|
| 2535 |
|
---|
| 2536 | BOOL APIENTRY _GpiComment(HPS a, LONG b, PBYTE c);
|
---|
| 2537 |
|
---|
| 2538 | #undef GpiComment
|
---|
| 2539 | #define GpiComment _GpiComment
|
---|
| 2540 |
|
---|
| 2541 | BOOL APIENTRY _GpiConvert(HPS a, LONG b, LONG c, LONG d, PPOINTL e);
|
---|
| 2542 |
|
---|
| 2543 | #undef GpiConvert
|
---|
| 2544 | #define GpiConvert _GpiConvert
|
---|
| 2545 |
|
---|
| 2546 | BOOL APIENTRY _GpiConvertWithMatrix(HPS a, LONG b, PPOINTL c, LONG d, PMATRIXLF e);
|
---|
| 2547 |
|
---|
| 2548 | #undef GpiConvertWithMatrix
|
---|
| 2549 | #define GpiConvertWithMatrix _GpiConvertWithMatrix
|
---|
| 2550 |
|
---|
| 2551 | HMF APIENTRY _GpiCopyMetaFile(HMF a);
|
---|
| 2552 |
|
---|
| 2553 | #undef GpiCopyMetaFile
|
---|
| 2554 | #define GpiCopyMetaFile _GpiCopyMetaFile
|
---|
| 2555 |
|
---|
| 2556 | BOOL APIENTRY _GpiCreateLogColorTable(HPS a, ULONG b, LONG c, LONG d, LONG e, PLONG f);
|
---|
| 2557 |
|
---|
| 2558 | #undef GpiCreateLogColorTable
|
---|
| 2559 | #define GpiCreateLogColorTable _GpiCreateLogColorTable
|
---|
| 2560 |
|
---|
| 2561 | LONG APIENTRY _GpiCreateLogFont(HPS a, STR8 *b, LONG c, PFATTRS d);
|
---|
| 2562 |
|
---|
| 2563 | #undef GpiCreateLogFont
|
---|
| 2564 | #define GpiCreateLogFont _GpiCreateLogFont
|
---|
| 2565 |
|
---|
| 2566 | HPAL APIENTRY _GpiCreatePalette(HAB a, ULONG b, ULONG c, ULONG d, PULONG e);
|
---|
| 2567 |
|
---|
| 2568 | #undef GpiCreatePalette
|
---|
| 2569 | #define GpiCreatePalette _GpiCreatePalette
|
---|
| 2570 |
|
---|
| 2571 | HRGN APIENTRY _GpiCreateRegion(HPS a, LONG b, PRECTL c);
|
---|
| 2572 |
|
---|
| 2573 | #undef GpiCreateRegion
|
---|
| 2574 | #define GpiCreateRegion _GpiCreateRegion
|
---|
| 2575 |
|
---|
| 2576 | BOOL APIENTRY _GpiDeleteElement(HPS a);
|
---|
| 2577 |
|
---|
| 2578 | #undef GpiDeleteElement
|
---|
| 2579 | #define GpiDeleteElement _GpiDeleteElement
|
---|
| 2580 |
|
---|
| 2581 | BOOL APIENTRY _GpiDeleteElementRange(HPS a, LONG b, LONG c);
|
---|
| 2582 |
|
---|
| 2583 | #undef GpiDeleteElementRange
|
---|
| 2584 | #define GpiDeleteElementRange _GpiDeleteElementRange
|
---|
| 2585 |
|
---|
| 2586 | BOOL APIENTRY _GpiDeleteElementsBetweenLabels(HPS a, LONG b, LONG c);
|
---|
| 2587 |
|
---|
| 2588 | #undef GpiDeleteElementsBetweenLabels
|
---|
| 2589 | #define GpiDeleteElementsBetweenLabels _GpiDeleteElementsBetweenLabels
|
---|
| 2590 |
|
---|
| 2591 | BOOL APIENTRY _GpiDeleteMetaFile(HMF a);
|
---|
| 2592 |
|
---|
| 2593 | #undef GpiDeleteMetaFile
|
---|
| 2594 | #define GpiDeleteMetaFile _GpiDeleteMetaFile
|
---|
| 2595 |
|
---|
| 2596 | BOOL APIENTRY _GpiDeletePalette(HPAL a);
|
---|
| 2597 |
|
---|
| 2598 | #undef GpiDeletePalette
|
---|
| 2599 | #define GpiDeletePalette _GpiDeletePalette
|
---|
| 2600 |
|
---|
| 2601 | BOOL APIENTRY _GpiDeleteSetId(HPS a, LONG b);
|
---|
| 2602 |
|
---|
| 2603 | #undef GpiDeleteSetId
|
---|
| 2604 | #define GpiDeleteSetId _GpiDeleteSetId
|
---|
| 2605 |
|
---|
| 2606 | BOOL APIENTRY _GpiDestroyRegion(HPS a, HRGN b);
|
---|
| 2607 |
|
---|
| 2608 | #undef GpiDestroyRegion
|
---|
| 2609 | #define GpiDestroyRegion _GpiDestroyRegion
|
---|
| 2610 |
|
---|
| 2611 | LONG APIENTRY _GpiElement(HPS a, LONG b, PCSZ c, LONG d, PBYTE e);
|
---|
| 2612 |
|
---|
| 2613 | #undef GpiElement
|
---|
| 2614 | #define GpiElement _GpiElement
|
---|
| 2615 |
|
---|
| 2616 | LONG APIENTRY _GpiEndArea(HPS a);
|
---|
| 2617 |
|
---|
| 2618 | #undef GpiEndArea
|
---|
| 2619 | #define GpiEndArea _GpiEndArea
|
---|
| 2620 |
|
---|
| 2621 | BOOL APIENTRY _GpiEndElement(HPS a);
|
---|
| 2622 |
|
---|
| 2623 | #undef GpiEndElement
|
---|
| 2624 | #define GpiEndElement _GpiEndElement
|
---|
| 2625 |
|
---|
| 2626 | BOOL APIENTRY _GpiEndPath(HPS a);
|
---|
| 2627 |
|
---|
| 2628 | #undef GpiEndPath
|
---|
| 2629 | #define GpiEndPath _GpiEndPath
|
---|
| 2630 |
|
---|
| 2631 | LONG APIENTRY _GpiEqualRegion(HPS a, HRGN b, HRGN c);
|
---|
| 2632 |
|
---|
| 2633 | #undef GpiEqualRegion
|
---|
| 2634 | #define GpiEqualRegion _GpiEqualRegion
|
---|
| 2635 |
|
---|
| 2636 | LONG APIENTRY _GpiExcludeClipRectangle(HPS a, PRECTL b);
|
---|
| 2637 |
|
---|
| 2638 | #undef GpiExcludeClipRectangle
|
---|
| 2639 | #define GpiExcludeClipRectangle _GpiExcludeClipRectangle
|
---|
| 2640 |
|
---|
| 2641 | LONG APIENTRY _GpiFillPath(HPS a, LONG b, LONG c);
|
---|
| 2642 |
|
---|
| 2643 | #undef GpiFillPath
|
---|
| 2644 | #define GpiFillPath _GpiFillPath
|
---|
| 2645 |
|
---|
| 2646 | LONG APIENTRY _GpiFrameRegion(HPS a, HRGN b, PSIZEL c);
|
---|
| 2647 |
|
---|
| 2648 | #undef GpiFrameRegion
|
---|
| 2649 | #define GpiFrameRegion _GpiFrameRegion
|
---|
| 2650 |
|
---|
| 2651 | LONG APIENTRY _GpiFullArc(HPS a, LONG b, FIXED c);
|
---|
| 2652 |
|
---|
| 2653 | #undef GpiFullArc
|
---|
| 2654 | #define GpiFullArc _GpiFullArc
|
---|
| 2655 |
|
---|
| 2656 | LONG APIENTRY _GpiImage(HPS a, LONG b, PSIZEL c, LONG d, PBYTE e);
|
---|
| 2657 |
|
---|
| 2658 | #undef GpiImage
|
---|
| 2659 | #define GpiImage _GpiImage
|
---|
| 2660 |
|
---|
| 2661 | LONG APIENTRY _GpiIntersectClipRectangle(HPS a, PRECTL b);
|
---|
| 2662 |
|
---|
| 2663 | #undef GpiIntersectClipRectangle
|
---|
| 2664 | #define GpiIntersectClipRectangle _GpiIntersectClipRectangle
|
---|
| 2665 |
|
---|
| 2666 | BOOL APIENTRY _GpiLabel(HPS a, LONG b);
|
---|
| 2667 |
|
---|
| 2668 | #undef GpiLabel
|
---|
| 2669 | #define GpiLabel _GpiLabel
|
---|
| 2670 |
|
---|
| 2671 | LONG APIENTRY _GpiLine(HPS a, PPOINTL b);
|
---|
| 2672 |
|
---|
| 2673 | #undef GpiLine
|
---|
| 2674 | #define GpiLine _GpiLine
|
---|
| 2675 |
|
---|
| 2676 | BOOL APIENTRY _GpiLoadFonts(HAB a, PCSZ b);
|
---|
| 2677 |
|
---|
| 2678 | #undef GpiLoadFonts
|
---|
| 2679 | #define GpiLoadFonts _GpiLoadFonts
|
---|
| 2680 |
|
---|
| 2681 | HMF APIENTRY _GpiLoadMetaFile(HAB a, PCSZ b);
|
---|
| 2682 |
|
---|
| 2683 | #undef GpiLoadMetaFile
|
---|
| 2684 | #define GpiLoadMetaFile _GpiLoadMetaFile
|
---|
| 2685 |
|
---|
| 2686 | BOOL APIENTRY _GpiLoadPublicFonts(HAB a, PCSZ b);
|
---|
| 2687 |
|
---|
| 2688 | #undef GpiLoadPublicFonts
|
---|
| 2689 | #define GpiLoadPublicFonts _GpiLoadPublicFonts
|
---|
| 2690 |
|
---|
| 2691 | LONG APIENTRY _GpiMarker(HPS a, PPOINTL b);
|
---|
| 2692 |
|
---|
| 2693 | #undef GpiMarker
|
---|
| 2694 | #define GpiMarker _GpiMarker
|
---|
| 2695 |
|
---|
| 2696 | BOOL APIENTRY _GpiModifyPath(HPS a, LONG b, LONG c);
|
---|
| 2697 |
|
---|
| 2698 | #undef GpiModifyPath
|
---|
| 2699 | #define GpiModifyPath _GpiModifyPath
|
---|
| 2700 |
|
---|
| 2701 | BOOL APIENTRY _GpiMove(HPS a, PPOINTL b);
|
---|
| 2702 |
|
---|
| 2703 | #undef GpiMove
|
---|
| 2704 | #define GpiMove _GpiMove
|
---|
| 2705 |
|
---|
| 2706 | LONG APIENTRY _GpiOffsetClipRegion(HPS a, PPOINTL b);
|
---|
| 2707 |
|
---|
| 2708 | #undef GpiOffsetClipRegion
|
---|
| 2709 | #define GpiOffsetClipRegion _GpiOffsetClipRegion
|
---|
| 2710 |
|
---|
| 2711 | BOOL APIENTRY _GpiOffsetElementPointer(HPS a, LONG b);
|
---|
| 2712 |
|
---|
| 2713 | #undef GpiOffsetElementPointer
|
---|
| 2714 | #define GpiOffsetElementPointer _GpiOffsetElementPointer
|
---|
| 2715 |
|
---|
| 2716 | BOOL APIENTRY _GpiOffsetRegion(HPS a, HRGN b, PPOINTL c);
|
---|
| 2717 |
|
---|
| 2718 | #undef GpiOffsetRegion
|
---|
| 2719 | #define GpiOffsetRegion _GpiOffsetRegion
|
---|
| 2720 |
|
---|
| 2721 | LONG APIENTRY _GpiOutlinePath(HPS a, LONG b, LONG c);
|
---|
| 2722 |
|
---|
| 2723 | #undef GpiOutlinePath
|
---|
| 2724 | #define GpiOutlinePath _GpiOutlinePath
|
---|
| 2725 |
|
---|
| 2726 | LONG APIENTRY _GpiPaintRegion(HPS a, HRGN b);
|
---|
| 2727 |
|
---|
| 2728 | #undef GpiPaintRegion
|
---|
| 2729 | #define GpiPaintRegion _GpiPaintRegion
|
---|
| 2730 |
|
---|
| 2731 | LONG APIENTRY _GpiPartialArc(HPS a, PPOINTL b, FIXED c, FIXED d, FIXED e);
|
---|
| 2732 |
|
---|
| 2733 | #undef GpiPartialArc
|
---|
| 2734 | #define GpiPartialArc _GpiPartialArc
|
---|
| 2735 |
|
---|
| 2736 | HRGN APIENTRY _GpiPathToRegion(HPS a, LONG b, LONG c);
|
---|
| 2737 |
|
---|
| 2738 | #undef GpiPathToRegion
|
---|
| 2739 | #define GpiPathToRegion _GpiPathToRegion
|
---|
| 2740 |
|
---|
| 2741 | LONG APIENTRY _GpiPlayMetaFile(HPS a, HMF b, LONG c, PLONG d, PLONG e, LONG f, PSZ g);
|
---|
| 2742 |
|
---|
| 2743 | #undef GpiPlayMetaFile
|
---|
| 2744 | #define GpiPlayMetaFile _GpiPlayMetaFile
|
---|
| 2745 |
|
---|
| 2746 | LONG APIENTRY _GpiPointArc(HPS a, PPOINTL b);
|
---|
| 2747 |
|
---|
| 2748 | #undef GpiPointArc
|
---|
| 2749 | #define GpiPointArc _GpiPointArc
|
---|
| 2750 |
|
---|
| 2751 | LONG APIENTRY _GpiPolyFillet(HPS a, LONG b, PPOINTL c);
|
---|
| 2752 |
|
---|
| 2753 | #undef GpiPolyFillet
|
---|
| 2754 | #define GpiPolyFillet _GpiPolyFillet
|
---|
| 2755 |
|
---|
| 2756 | LONG APIENTRY _GpiPolyFilletSharp(HPS a, LONG b, PPOINTL c, PFIXED d);
|
---|
| 2757 |
|
---|
| 2758 | #undef GpiPolyFilletSharp
|
---|
| 2759 | #define GpiPolyFilletSharp _GpiPolyFilletSharp
|
---|
| 2760 |
|
---|
| 2761 | LONG APIENTRY _GpiPolygons(HPS a, ULONG b, PPOLYGON c, ULONG d, ULONG e);
|
---|
| 2762 |
|
---|
| 2763 | #undef GpiPolygons
|
---|
| 2764 | #define GpiPolygons _GpiPolygons
|
---|
| 2765 |
|
---|
| 2766 | HRGN APIENTRY _GpiCreatePolygonRegion(HPS a, ULONG b, PPOLYGON c, ULONG d);
|
---|
| 2767 |
|
---|
| 2768 | #undef GpiCreatePolygonRegion
|
---|
| 2769 | #define GpiCreatePolygonRegion _GpiCreatePolygonRegion
|
---|
| 2770 |
|
---|
| 2771 | HRGN APIENTRY _GpiCreateEllipticRegion(HPS a, PRECTL b);
|
---|
| 2772 |
|
---|
| 2773 | #undef GpiCreateEllipticRegion
|
---|
| 2774 | #define GpiCreateEllipticRegion _GpiCreateEllipticRegion
|
---|
| 2775 |
|
---|
| 2776 | HRGN APIENTRY _GpiCreateRoundRectRegion(HPS a, PPOINTL b, LONG c, LONG d);
|
---|
| 2777 |
|
---|
| 2778 | #undef GpiCreateRoundRectRegion
|
---|
| 2779 | #define GpiCreateRoundRectRegion _GpiCreateRoundRectRegion
|
---|
| 2780 |
|
---|
| 2781 | #undef GpiPolygons
|
---|
| 2782 | #define GpiPolygons _GpiPolygons
|
---|
| 2783 |
|
---|
| 2784 | LONG APIENTRY _GpiPolyLine(HPS a, LONG b, PPOINTL c);
|
---|
| 2785 |
|
---|
| 2786 | #undef GpiPolyLine
|
---|
| 2787 | #define GpiPolyLine _GpiPolyLine
|
---|
| 2788 |
|
---|
| 2789 | LONG APIENTRY _GpiPolyLineDisjoint(HPS a, LONG b, PPOINTL c);
|
---|
| 2790 |
|
---|
| 2791 | #undef GpiPolyLineDisjoint
|
---|
| 2792 | #define GpiPolyLineDisjoint _GpiPolyLineDisjoint
|
---|
| 2793 |
|
---|
| 2794 | LONG APIENTRY _GpiPolyMarker(HPS a, LONG b, PPOINTL c);
|
---|
| 2795 |
|
---|
| 2796 | #undef GpiPolyMarker
|
---|
| 2797 | #define GpiPolyMarker _GpiPolyMarker
|
---|
| 2798 |
|
---|
| 2799 | LONG APIENTRY _GpiPolySpline(HPS a, LONG b, PPOINTL c);
|
---|
| 2800 |
|
---|
| 2801 | #undef GpiPolySpline
|
---|
| 2802 | #define GpiPolySpline _GpiPolySpline
|
---|
| 2803 |
|
---|
| 2804 | BOOL APIENTRY _GpiPop(HPS a, LONG b);
|
---|
| 2805 |
|
---|
| 2806 | #undef GpiPop
|
---|
| 2807 | #define GpiPop _GpiPop
|
---|
| 2808 |
|
---|
| 2809 | LONG APIENTRY _GpiPtInRegion(HPS a, HRGN b, PPOINTL c);
|
---|
| 2810 |
|
---|
| 2811 | #undef GpiPtInRegion
|
---|
| 2812 | #define GpiPtInRegion _GpiPtInRegion
|
---|
| 2813 |
|
---|
| 2814 | LONG APIENTRY _GpiPtVisible(HPS a, PPOINTL b);
|
---|
| 2815 |
|
---|
| 2816 | #undef GpiPtVisible
|
---|
| 2817 | #define GpiPtVisible _GpiPtVisible
|
---|
| 2818 |
|
---|
| 2819 | BOOL APIENTRY _GpiQueryArcParams(HPS a, PARCPARAMS b);
|
---|
| 2820 |
|
---|
| 2821 | #undef GpiQueryArcParams
|
---|
| 2822 | #define GpiQueryArcParams _GpiQueryArcParams
|
---|
| 2823 |
|
---|
| 2824 | LONG APIENTRY _GpiQueryAttrMode(HPS a);
|
---|
| 2825 |
|
---|
| 2826 | #undef GpiQueryAttrMode
|
---|
| 2827 | #define GpiQueryAttrMode _GpiQueryAttrMode
|
---|
| 2828 |
|
---|
| 2829 | LONG APIENTRY _GpiQueryAttrs(HPS a, LONG b, ULONG c, PBUNDLE d);
|
---|
| 2830 |
|
---|
| 2831 | #undef GpiQueryAttrs
|
---|
| 2832 | #define GpiQueryAttrs _GpiQueryAttrs
|
---|
| 2833 |
|
---|
| 2834 | LONG APIENTRY _GpiQueryBackColor(HPS a);
|
---|
| 2835 |
|
---|
| 2836 | #undef GpiQueryBackColor
|
---|
| 2837 | #define GpiQueryBackColor _GpiQueryBackColor
|
---|
| 2838 |
|
---|
| 2839 | LONG APIENTRY _GpiQueryBackMix(HPS a);
|
---|
| 2840 |
|
---|
| 2841 | #undef GpiQueryBackMix
|
---|
| 2842 | #define GpiQueryBackMix _GpiQueryBackMix
|
---|
| 2843 |
|
---|
| 2844 | BOOL APIENTRY _GpiQueryCharAngle(HPS a, PGRADIENTL b);
|
---|
| 2845 |
|
---|
| 2846 | #undef GpiQueryCharAngle
|
---|
| 2847 | #define GpiQueryCharAngle _GpiQueryCharAngle
|
---|
| 2848 |
|
---|
| 2849 | BOOL APIENTRY _GpiQueryCharBox(HPS a, PSIZEF b);
|
---|
| 2850 |
|
---|
| 2851 | #undef GpiQueryCharBox
|
---|
| 2852 | #define GpiQueryCharBox _GpiQueryCharBox
|
---|
| 2853 |
|
---|
| 2854 | BOOL APIENTRY _GpiQueryCharBreakExtra(HPS a, PFIXED b);
|
---|
| 2855 |
|
---|
| 2856 | #undef GpiQueryCharBreakExtra
|
---|
| 2857 | #define GpiQueryCharBreakExtra _GpiQueryCharBreakExtra
|
---|
| 2858 |
|
---|
| 2859 | LONG APIENTRY _GpiQueryCharDirection(HPS a);
|
---|
| 2860 |
|
---|
| 2861 | #undef GpiQueryCharDirection
|
---|
| 2862 | #define GpiQueryCharDirection _GpiQueryCharDirection
|
---|
| 2863 |
|
---|
| 2864 | BOOL APIENTRY _GpiQueryCharExtra(HPS a, PFIXED b);
|
---|
| 2865 |
|
---|
| 2866 | #undef GpiQueryCharExtra
|
---|
| 2867 | #define GpiQueryCharExtra _GpiQueryCharExtra
|
---|
| 2868 |
|
---|
| 2869 | LONG APIENTRY _GpiQueryCharMode(HPS a);
|
---|
| 2870 |
|
---|
| 2871 | #undef GpiQueryCharMode
|
---|
| 2872 | #define GpiQueryCharMode _GpiQueryCharMode
|
---|
| 2873 |
|
---|
| 2874 | LONG APIENTRY _GpiQueryCharSet(HPS a);
|
---|
| 2875 |
|
---|
| 2876 | #undef GpiQueryCharSet
|
---|
| 2877 | #define GpiQueryCharSet _GpiQueryCharSet
|
---|
| 2878 |
|
---|
| 2879 | BOOL APIENTRY _GpiQueryCharShear(HPS a, PPOINTL b);
|
---|
| 2880 |
|
---|
| 2881 | #undef GpiQueryCharShear
|
---|
| 2882 | #define GpiQueryCharShear _GpiQueryCharShear
|
---|
| 2883 |
|
---|
| 2884 | BOOL APIENTRY _GpiQueryCharStringPos(HPS a, ULONG b, LONG c, PCH d, PLONG e, PPOINTL f);
|
---|
| 2885 |
|
---|
| 2886 | #undef GpiQueryCharStringPos
|
---|
| 2887 | #define GpiQueryCharStringPos _GpiQueryCharStringPos
|
---|
| 2888 |
|
---|
| 2889 | BOOL APIENTRY _GpiQueryCharStringPosAt(HPS a, PPOINTL b, ULONG c, LONG d, PCH e, PLONG f, PPOINTL g);
|
---|
| 2890 |
|
---|
| 2891 | #undef GpiQueryCharStringPosAt
|
---|
| 2892 | #define GpiQueryCharStringPosAt _GpiQueryCharStringPosAt
|
---|
| 2893 |
|
---|
| 2894 | LONG APIENTRY _GpiQueryClipBox(HPS a, PRECTL b);
|
---|
| 2895 |
|
---|
| 2896 | #undef GpiQueryClipBox
|
---|
| 2897 | #define GpiQueryClipBox _GpiQueryClipBox
|
---|
| 2898 |
|
---|
| 2899 | HRGN APIENTRY _GpiQueryClipRegion(HPS a);
|
---|
| 2900 |
|
---|
| 2901 | #undef GpiQueryClipRegion
|
---|
| 2902 | #define GpiQueryClipRegion _GpiQueryClipRegion
|
---|
| 2903 |
|
---|
| 2904 | LONG APIENTRY _GpiQueryColor(HPS a);
|
---|
| 2905 |
|
---|
| 2906 | #undef GpiQueryColor
|
---|
| 2907 | #define GpiQueryColor _GpiQueryColor
|
---|
| 2908 |
|
---|
| 2909 | BOOL APIENTRY _GpiQueryColorData(HPS a, LONG b, PLONG c);
|
---|
| 2910 |
|
---|
| 2911 | #undef GpiQueryColorData
|
---|
| 2912 | #define GpiQueryColorData _GpiQueryColorData
|
---|
| 2913 |
|
---|
| 2914 | LONG APIENTRY _GpiQueryColorIndex(HPS a, ULONG b, LONG c);
|
---|
| 2915 |
|
---|
| 2916 | #undef GpiQueryColorIndex
|
---|
| 2917 | #define GpiQueryColorIndex _GpiQueryColorIndex
|
---|
| 2918 |
|
---|
| 2919 | ULONG APIENTRY _GpiQueryCp(HPS a);
|
---|
| 2920 |
|
---|
| 2921 | #undef GpiQueryCp
|
---|
| 2922 | #define GpiQueryCp _GpiQueryCp
|
---|
| 2923 |
|
---|
| 2924 | BOOL APIENTRY _GpiQueryCurrentPosition(HPS a, PPOINTL b);
|
---|
| 2925 |
|
---|
| 2926 | #undef GpiQueryCurrentPosition
|
---|
| 2927 | #define GpiQueryCurrentPosition _GpiQueryCurrentPosition
|
---|
| 2928 |
|
---|
| 2929 | BOOL APIENTRY _GpiQueryDefArcParams(HPS a, PARCPARAMS b);
|
---|
| 2930 |
|
---|
| 2931 | #undef GpiQueryDefArcParams
|
---|
| 2932 | #define GpiQueryDefArcParams _GpiQueryDefArcParams
|
---|
| 2933 |
|
---|
| 2934 | BOOL APIENTRY _GpiQueryDefAttrs(HPS a, LONG b, ULONG c, PBUNDLE d);
|
---|
| 2935 |
|
---|
| 2936 | #undef GpiQueryDefAttrs
|
---|
| 2937 | #define GpiQueryDefAttrs _GpiQueryDefAttrs
|
---|
| 2938 |
|
---|
| 2939 | BOOL APIENTRY _GpiQueryDefCharBox(HPS a, PSIZEL b);
|
---|
| 2940 |
|
---|
| 2941 | #undef GpiQueryDefCharBox
|
---|
| 2942 | #define GpiQueryDefCharBox _GpiQueryDefCharBox
|
---|
| 2943 |
|
---|
| 2944 | BOOL APIENTRY _GpiQueryDefTag(HPS a, PLONG b);
|
---|
| 2945 |
|
---|
| 2946 | #undef GpiQueryDefTag
|
---|
| 2947 | #define GpiQueryDefTag _GpiQueryDefTag
|
---|
| 2948 |
|
---|
| 2949 | BOOL APIENTRY _GpiQueryDefViewingLimits(HPS a, PRECTL b);
|
---|
| 2950 |
|
---|
| 2951 | #undef GpiQueryDefViewingLimits
|
---|
| 2952 | #define GpiQueryDefViewingLimits _GpiQueryDefViewingLimits
|
---|
| 2953 |
|
---|
| 2954 | BOOL APIENTRY _GpiQueryDefaultViewMatrix(HPS a, LONG b, PMATRIXLF c);
|
---|
| 2955 |
|
---|
| 2956 | #undef GpiQueryDefaultViewMatrix
|
---|
| 2957 | #define GpiQueryDefaultViewMatrix _GpiQueryDefaultViewMatrix
|
---|
| 2958 |
|
---|
| 2959 | LONG APIENTRY _GpiQueryEditMode(HPS a);
|
---|
| 2960 |
|
---|
| 2961 | #undef GpiQueryEditMode
|
---|
| 2962 | #define GpiQueryEditMode _GpiQueryEditMode
|
---|
| 2963 |
|
---|
| 2964 | LONG APIENTRY _GpiQueryElement(HPS a, LONG b, LONG c, PBYTE d);
|
---|
| 2965 |
|
---|
| 2966 | #undef GpiQueryElement
|
---|
| 2967 | #define GpiQueryElement _GpiQueryElement
|
---|
| 2968 |
|
---|
| 2969 | LONG APIENTRY _GpiQueryElementPointer(HPS a);
|
---|
| 2970 |
|
---|
| 2971 | #undef GpiQueryElementPointer
|
---|
| 2972 | #define GpiQueryElementPointer _GpiQueryElementPointer
|
---|
| 2973 |
|
---|
| 2974 | LONG APIENTRY _GpiQueryElementType(HPS a, PLONG b, LONG c, PSZ d);
|
---|
| 2975 |
|
---|
| 2976 | #undef GpiQueryElementType
|
---|
| 2977 | #define GpiQueryElementType _GpiQueryElementType
|
---|
| 2978 |
|
---|
| 2979 | ULONG APIENTRY _GpiQueryFaceString(HPS a, PCSZ b, PFACENAMEDESC c, LONG d, PSZ e);
|
---|
| 2980 |
|
---|
| 2981 | #undef GpiQueryFaceString
|
---|
| 2982 | #define GpiQueryFaceString _GpiQueryFaceString
|
---|
| 2983 |
|
---|
| 2984 | ULONG APIENTRY _GpiQueryFontAction(HAB a, ULONG b);
|
---|
| 2985 |
|
---|
| 2986 | #undef GpiQueryFontAction
|
---|
| 2987 | #define GpiQueryFontAction _GpiQueryFontAction
|
---|
| 2988 |
|
---|
| 2989 | LONG APIENTRY _GpiQueryFontFileDescriptions(HAB a, PCSZ b, PLONG c, PFFDESCS d);
|
---|
| 2990 |
|
---|
| 2991 | #undef GpiQueryFontFileDescriptions
|
---|
| 2992 | #define GpiQueryFontFileDescriptions _GpiQueryFontFileDescriptions
|
---|
| 2993 |
|
---|
| 2994 | BOOL APIENTRY _GpiQueryFontMetrics(HPS a, LONG b, PFONTMETRICS c);
|
---|
| 2995 |
|
---|
| 2996 | #undef GpiQueryFontMetrics
|
---|
| 2997 | #define GpiQueryFontMetrics _GpiQueryFontMetrics
|
---|
| 2998 |
|
---|
| 2999 | LONG APIENTRY _GpiQueryFonts(HPS a, ULONG b, PCSZ c, PLONG d, LONG e, PFONTMETRICS f);
|
---|
| 3000 |
|
---|
| 3001 | #undef GpiQueryFonts
|
---|
| 3002 | #define GpiQueryFonts _GpiQueryFonts
|
---|
| 3003 |
|
---|
| 3004 | LONG APIENTRY _GpiQueryFullFontFileDescs(HAB a, PCSZ b, PLONG c, PVOID d, PLONG e);
|
---|
| 3005 |
|
---|
| 3006 | #undef GpiQueryFullFontFileDescs
|
---|
| 3007 | #define GpiQueryFullFontFileDescs _GpiQueryFullFontFileDescs
|
---|
| 3008 |
|
---|
| 3009 | BOOL APIENTRY _GpiQueryGraphicsField(HPS a, PRECTL b);
|
---|
| 3010 |
|
---|
| 3011 | #undef GpiQueryGraphicsField
|
---|
| 3012 | #define GpiQueryGraphicsField _GpiQueryGraphicsField
|
---|
| 3013 |
|
---|
| 3014 | LONG APIENTRY _GpiQueryKerningPairs(HPS a, LONG b, PKERNINGPAIRS c);
|
---|
| 3015 |
|
---|
| 3016 | #undef GpiQueryKerningPairs
|
---|
| 3017 | #define GpiQueryKerningPairs _GpiQueryKerningPairs
|
---|
| 3018 |
|
---|
| 3019 | LONG APIENTRY _GpiQueryLineEnd(HPS a);
|
---|
| 3020 |
|
---|
| 3021 | #undef GpiQueryLineEnd
|
---|
| 3022 | #define GpiQueryLineEnd _GpiQueryLineEnd
|
---|
| 3023 |
|
---|
| 3024 | LONG APIENTRY _GpiQueryLineJoin(HPS a);
|
---|
| 3025 |
|
---|
| 3026 | #undef GpiQueryLineJoin
|
---|
| 3027 | #define GpiQueryLineJoin _GpiQueryLineJoin
|
---|
| 3028 |
|
---|
| 3029 | LONG APIENTRY _GpiQueryLineType(HPS a);
|
---|
| 3030 |
|
---|
| 3031 | #undef GpiQueryLineType
|
---|
| 3032 | #define GpiQueryLineType _GpiQueryLineType
|
---|
| 3033 |
|
---|
| 3034 | FIXED APIENTRY _GpiQueryLineWidth(HPS a);
|
---|
| 3035 |
|
---|
| 3036 | #undef GpiQueryLineWidth
|
---|
| 3037 | #define GpiQueryLineWidth _GpiQueryLineWidth
|
---|
| 3038 |
|
---|
| 3039 | LONG APIENTRY _GpiQueryLineWidthGeom(HPS a);
|
---|
| 3040 |
|
---|
| 3041 | #undef GpiQueryLineWidthGeom
|
---|
| 3042 | #define GpiQueryLineWidthGeom _GpiQueryLineWidthGeom
|
---|
| 3043 |
|
---|
| 3044 | LONG APIENTRY _GpiQueryLogColorTable(HPS a, ULONG b, LONG c, LONG d, PLONG e);
|
---|
| 3045 |
|
---|
| 3046 | #undef GpiQueryLogColorTable
|
---|
| 3047 | #define GpiQueryLogColorTable _GpiQueryLogColorTable
|
---|
| 3048 |
|
---|
| 3049 | BOOL APIENTRY _GpiQueryLogicalFont(HPS a, LONG b, PSTR8 c, PFATTRS d, LONG e);
|
---|
| 3050 |
|
---|
| 3051 | #undef GpiQueryLogicalFont
|
---|
| 3052 | #define GpiQueryLogicalFont _GpiQueryLogicalFont
|
---|
| 3053 |
|
---|
| 3054 | LONG APIENTRY _GpiQueryMarker(HPS a);
|
---|
| 3055 |
|
---|
| 3056 | #undef GpiQueryMarker
|
---|
| 3057 | #define GpiQueryMarker _GpiQueryMarker
|
---|
| 3058 |
|
---|
| 3059 | BOOL APIENTRY _GpiQueryMarkerBox(HPS a, PSIZEF b);
|
---|
| 3060 |
|
---|
| 3061 | #undef GpiQueryMarkerBox
|
---|
| 3062 | #define GpiQueryMarkerBox _GpiQueryMarkerBox
|
---|
| 3063 |
|
---|
| 3064 | LONG APIENTRY _GpiQueryMarkerSet(HPS a);
|
---|
| 3065 |
|
---|
| 3066 | #undef GpiQueryMarkerSet
|
---|
| 3067 | #define GpiQueryMarkerSet _GpiQueryMarkerSet
|
---|
| 3068 |
|
---|
| 3069 | BOOL APIENTRY _GpiQueryMetaFileBits(HMF a, LONG b, LONG c, PBYTE d);
|
---|
| 3070 |
|
---|
| 3071 | #undef GpiQueryMetaFileBits
|
---|
| 3072 | #define GpiQueryMetaFileBits _GpiQueryMetaFileBits
|
---|
| 3073 |
|
---|
| 3074 | LONG APIENTRY _GpiQueryMetaFileLength(HMF a);
|
---|
| 3075 |
|
---|
| 3076 | #undef GpiQueryMetaFileLength
|
---|
| 3077 | #define GpiQueryMetaFileLength _GpiQueryMetaFileLength
|
---|
| 3078 |
|
---|
| 3079 | LONG APIENTRY _GpiQueryMix(HPS a);
|
---|
| 3080 |
|
---|
| 3081 | #undef GpiQueryMix
|
---|
| 3082 | #define GpiQueryMix _GpiQueryMix
|
---|
| 3083 |
|
---|
| 3084 | BOOL APIENTRY _GpiQueryModelTransformMatrix(HPS a, LONG b, PMATRIXLF c);
|
---|
| 3085 |
|
---|
| 3086 | #undef GpiQueryModelTransformMatrix
|
---|
| 3087 | #define GpiQueryModelTransformMatrix _GpiQueryModelTransformMatrix
|
---|
| 3088 |
|
---|
| 3089 | LONG APIENTRY _GpiQueryNearestColor(HPS a, ULONG b, LONG c);
|
---|
| 3090 |
|
---|
| 3091 | #undef GpiQueryNearestColor
|
---|
| 3092 | #define GpiQueryNearestColor _GpiQueryNearestColor
|
---|
| 3093 |
|
---|
| 3094 | LONG APIENTRY _GpiQueryNumberSetIds(HPS a);
|
---|
| 3095 |
|
---|
| 3096 | #undef GpiQueryNumberSetIds
|
---|
| 3097 | #define GpiQueryNumberSetIds _GpiQueryNumberSetIds
|
---|
| 3098 |
|
---|
| 3099 | BOOL APIENTRY _GpiQueryPageViewport(HPS a, PRECTL b);
|
---|
| 3100 |
|
---|
| 3101 | #undef GpiQueryPageViewport
|
---|
| 3102 | #define GpiQueryPageViewport _GpiQueryPageViewport
|
---|
| 3103 |
|
---|
| 3104 | HPAL APIENTRY _GpiQueryPalette(HPS a);
|
---|
| 3105 |
|
---|
| 3106 | #undef GpiQueryPalette
|
---|
| 3107 | #define GpiQueryPalette _GpiQueryPalette
|
---|
| 3108 |
|
---|
| 3109 | LONG APIENTRY _GpiQueryPaletteInfo(HPAL a, HPS b, ULONG c, ULONG d, ULONG e, PULONG f);
|
---|
| 3110 |
|
---|
| 3111 | #undef GpiQueryPaletteInfo
|
---|
| 3112 | #define GpiQueryPaletteInfo _GpiQueryPaletteInfo
|
---|
| 3113 |
|
---|
| 3114 | LONG APIENTRY _GpiQueryPattern(HPS a);
|
---|
| 3115 |
|
---|
| 3116 | #undef GpiQueryPattern
|
---|
| 3117 | #define GpiQueryPattern _GpiQueryPattern
|
---|
| 3118 |
|
---|
| 3119 | BOOL APIENTRY _GpiQueryPatternRefPoint(HPS a, PPOINTL b);
|
---|
| 3120 |
|
---|
| 3121 | #undef GpiQueryPatternRefPoint
|
---|
| 3122 | #define GpiQueryPatternRefPoint _GpiQueryPatternRefPoint
|
---|
| 3123 |
|
---|
| 3124 | LONG APIENTRY _GpiQueryPatternSet(HPS a);
|
---|
| 3125 |
|
---|
| 3126 | #undef GpiQueryPatternSet
|
---|
| 3127 | #define GpiQueryPatternSet _GpiQueryPatternSet
|
---|
| 3128 |
|
---|
| 3129 | LONG APIENTRY _GpiQueryRealColors(HPS a, ULONG b, LONG c, LONG d, PLONG e);
|
---|
| 3130 |
|
---|
| 3131 | #undef GpiQueryRealColors
|
---|
| 3132 | #define GpiQueryRealColors _GpiQueryRealColors
|
---|
| 3133 |
|
---|
| 3134 | LONG APIENTRY _GpiQueryRegionBox(HPS a, HRGN b, PRECTL c);
|
---|
| 3135 |
|
---|
| 3136 | #undef GpiQueryRegionBox
|
---|
| 3137 | #define GpiQueryRegionBox _GpiQueryRegionBox
|
---|
| 3138 |
|
---|
| 3139 | BOOL APIENTRY _GpiQueryRegionRects(HPS a, HRGN b, PRECTL c, PRGNRECT d, PRECTL e);
|
---|
| 3140 |
|
---|
| 3141 | #undef GpiQueryRegionRects
|
---|
| 3142 | #define GpiQueryRegionRects _GpiQueryRegionRects
|
---|
| 3143 |
|
---|
| 3144 | LONG APIENTRY _GpiQueryRGBColor(HPS a, ULONG b, LONG c);
|
---|
| 3145 |
|
---|
| 3146 | #undef GpiQueryRGBColor
|
---|
| 3147 | #define GpiQueryRGBColor _GpiQueryRGBColor
|
---|
| 3148 |
|
---|
| 3149 | BOOL APIENTRY _GpiQuerySegmentTransformMatrix(HPS a, LONG b, LONG c, PMATRIXLF d);
|
---|
| 3150 |
|
---|
| 3151 | #undef GpiQuerySegmentTransformMatrix
|
---|
| 3152 | #define GpiQuerySegmentTransformMatrix _GpiQuerySegmentTransformMatrix
|
---|
| 3153 |
|
---|
| 3154 | BOOL APIENTRY _GpiQuerySetIds(HPS a, LONG b, PLONG c, PSTR8 d, PLONG e);
|
---|
| 3155 |
|
---|
| 3156 | #undef GpiQuerySetIds
|
---|
| 3157 | #define GpiQuerySetIds _GpiQuerySetIds
|
---|
| 3158 |
|
---|
| 3159 | BOOL APIENTRY _GpiQueryTextAlignment(HPS a, PLONG b, PLONG c);
|
---|
| 3160 |
|
---|
| 3161 | #undef GpiQueryTextAlignment
|
---|
| 3162 | #define GpiQueryTextAlignment _GpiQueryTextAlignment
|
---|
| 3163 |
|
---|
| 3164 | BOOL APIENTRY _GpiQueryTextBox(HPS a, LONG b, PCH c, LONG d, PPOINTL e);
|
---|
| 3165 |
|
---|
| 3166 | #undef GpiQueryTextBox
|
---|
| 3167 | #define GpiQueryTextBox _GpiQueryTextBox
|
---|
| 3168 |
|
---|
| 3169 | BOOL APIENTRY _GpiQueryViewingLimits(HPS a, PRECTL b);
|
---|
| 3170 |
|
---|
| 3171 | #undef GpiQueryViewingLimits
|
---|
| 3172 | #define GpiQueryViewingLimits _GpiQueryViewingLimits
|
---|
| 3173 |
|
---|
| 3174 | BOOL APIENTRY _GpiQueryViewingTransformMatrix(HPS a, LONG b, PMATRIXLF c);
|
---|
| 3175 |
|
---|
| 3176 | #undef GpiQueryViewingTransformMatrix
|
---|
| 3177 | #define GpiQueryViewingTransformMatrix _GpiQueryViewingTransformMatrix
|
---|
| 3178 |
|
---|
| 3179 | BOOL APIENTRY _GpiQueryWidthTable(HPS a, LONG b, LONG c, PLONG d);
|
---|
| 3180 |
|
---|
| 3181 | #undef GpiQueryWidthTable
|
---|
| 3182 | #define GpiQueryWidthTable _GpiQueryWidthTable
|
---|
| 3183 |
|
---|
| 3184 | LONG APIENTRY _GpiRectInRegion(HPS a, HRGN b, PRECTL c);
|
---|
| 3185 |
|
---|
| 3186 | #undef GpiRectInRegion
|
---|
| 3187 | #define GpiRectInRegion _GpiRectInRegion
|
---|
| 3188 |
|
---|
| 3189 | LONG APIENTRY _GpiRectVisible(HPS a, PRECTL b);
|
---|
| 3190 |
|
---|
| 3191 | #undef GpiRectVisible
|
---|
| 3192 | #define GpiRectVisible _GpiRectVisible
|
---|
| 3193 |
|
---|
| 3194 | BOOL APIENTRY _GpiRotate(HPS a, PMATRIXLF b, LONG c, FIXED d, PPOINTL e);
|
---|
| 3195 |
|
---|
| 3196 | #undef GpiRotate
|
---|
| 3197 | #define GpiRotate _GpiRotate
|
---|
| 3198 |
|
---|
| 3199 | BOOL APIENTRY _GpiSaveMetaFile(HMF a, PCSZ b);
|
---|
| 3200 |
|
---|
| 3201 | #undef GpiSaveMetaFile
|
---|
| 3202 | #define GpiSaveMetaFile _GpiSaveMetaFile
|
---|
| 3203 |
|
---|
| 3204 | BOOL APIENTRY _GpiScale(HPS a, PMATRIXLF b, LONG c, PFIXED d, PPOINTL e);
|
---|
| 3205 |
|
---|
| 3206 | #undef GpiScale
|
---|
| 3207 | #define GpiScale _GpiScale
|
---|
| 3208 |
|
---|
| 3209 | HPAL APIENTRY _GpiSelectPalette(HPS a, HPAL b);
|
---|
| 3210 |
|
---|
| 3211 | #undef GpiSelectPalette
|
---|
| 3212 | #define GpiSelectPalette _GpiSelectPalette
|
---|
| 3213 |
|
---|
| 3214 | BOOL APIENTRY _GpiSetArcParams(HPS a, PARCPARAMS b);
|
---|
| 3215 |
|
---|
| 3216 | #undef GpiSetArcParams
|
---|
| 3217 | #define GpiSetArcParams _GpiSetArcParams
|
---|
| 3218 |
|
---|
| 3219 | BOOL APIENTRY _GpiSetAttrMode(HPS a, LONG b);
|
---|
| 3220 |
|
---|
| 3221 | #undef GpiSetAttrMode
|
---|
| 3222 | #define GpiSetAttrMode _GpiSetAttrMode
|
---|
| 3223 |
|
---|
| 3224 | BOOL APIENTRY _GpiSetAttrs(HPS a, LONG b, ULONG c, ULONG d, PVOID e);
|
---|
| 3225 |
|
---|
| 3226 | #undef GpiSetAttrs
|
---|
| 3227 | #define GpiSetAttrs _GpiSetAttrs
|
---|
| 3228 |
|
---|
| 3229 | BOOL APIENTRY _GpiSetBackColor(HPS a, LONG b);
|
---|
| 3230 |
|
---|
| 3231 | #undef GpiSetBackColor
|
---|
| 3232 | #define GpiSetBackColor _GpiSetBackColor
|
---|
| 3233 |
|
---|
| 3234 | BOOL APIENTRY _GpiSetBackMix(HPS a, LONG b);
|
---|
| 3235 |
|
---|
| 3236 | #undef GpiSetBackMix
|
---|
| 3237 | #define GpiSetBackMix _GpiSetBackMix
|
---|
| 3238 |
|
---|
| 3239 | BOOL APIENTRY _GpiSetCharAngle(HPS a, PGRADIENTL b);
|
---|
| 3240 |
|
---|
| 3241 | #undef GpiSetCharAngle
|
---|
| 3242 | #define GpiSetCharAngle _GpiSetCharAngle
|
---|
| 3243 |
|
---|
| 3244 | BOOL APIENTRY _GpiSetCharBox(HPS a, PSIZEF b);
|
---|
| 3245 |
|
---|
| 3246 | #undef GpiSetCharBox
|
---|
| 3247 | #define GpiSetCharBox _GpiSetCharBox
|
---|
| 3248 |
|
---|
| 3249 | BOOL APIENTRY _GpiSetCharBreakExtra(HPS a, FIXED b);
|
---|
| 3250 |
|
---|
| 3251 | #undef GpiSetCharBreakExtra
|
---|
| 3252 | #define GpiSetCharBreakExtra _GpiSetCharBreakExtra
|
---|
| 3253 |
|
---|
| 3254 | BOOL APIENTRY _GpiSetCharDirection(HPS a, LONG b);
|
---|
| 3255 |
|
---|
| 3256 | #undef GpiSetCharDirection
|
---|
| 3257 | #define GpiSetCharDirection _GpiSetCharDirection
|
---|
| 3258 |
|
---|
| 3259 | BOOL APIENTRY _GpiSetCharExtra(HPS a, FIXED b);
|
---|
| 3260 |
|
---|
| 3261 | #undef GpiSetCharExtra
|
---|
| 3262 | #define GpiSetCharExtra _GpiSetCharExtra
|
---|
| 3263 |
|
---|
| 3264 | BOOL APIENTRY _GpiSetCharMode(HPS a, LONG b);
|
---|
| 3265 |
|
---|
| 3266 | #undef GpiSetCharMode
|
---|
| 3267 | #define GpiSetCharMode _GpiSetCharMode
|
---|
| 3268 |
|
---|
| 3269 | BOOL APIENTRY _GpiSetCharSet(HPS a, LONG b);
|
---|
| 3270 |
|
---|
| 3271 | #undef GpiSetCharSet
|
---|
| 3272 | #define GpiSetCharSet _GpiSetCharSet
|
---|
| 3273 |
|
---|
| 3274 | BOOL APIENTRY _GpiSetCharShear(HPS a, PPOINTL b);
|
---|
| 3275 |
|
---|
| 3276 | #undef GpiSetCharShear
|
---|
| 3277 | #define GpiSetCharShear _GpiSetCharShear
|
---|
| 3278 |
|
---|
| 3279 | BOOL APIENTRY _GpiSetClipPath(HPS a, LONG b, LONG c);
|
---|
| 3280 |
|
---|
| 3281 | #undef GpiSetClipPath
|
---|
| 3282 | #define GpiSetClipPath _GpiSetClipPath
|
---|
| 3283 |
|
---|
| 3284 | LONG APIENTRY _GpiSetClipRegion(HPS a, HRGN b, PHRGN c);
|
---|
| 3285 |
|
---|
| 3286 | #undef GpiSetClipRegion
|
---|
| 3287 | #define GpiSetClipRegion _GpiSetClipRegion
|
---|
| 3288 |
|
---|
| 3289 | BOOL APIENTRY _GpiSetColor(HPS a, LONG b);
|
---|
| 3290 |
|
---|
| 3291 | #undef GpiSetColor
|
---|
| 3292 | #define GpiSetColor _GpiSetColor
|
---|
| 3293 |
|
---|
| 3294 | BOOL APIENTRY _GpiSetCp(HPS a, ULONG b);
|
---|
| 3295 |
|
---|
| 3296 | #undef GpiSetCp
|
---|
| 3297 | #define GpiSetCp _GpiSetCp
|
---|
| 3298 |
|
---|
| 3299 | BOOL APIENTRY _GpiSetCurrentPosition(HPS a, PPOINTL b);
|
---|
| 3300 |
|
---|
| 3301 | #undef GpiSetCurrentPosition
|
---|
| 3302 | #define GpiSetCurrentPosition _GpiSetCurrentPosition
|
---|
| 3303 |
|
---|
| 3304 | BOOL APIENTRY _GpiSetDefArcParams(HPS a, PARCPARAMS b);
|
---|
| 3305 |
|
---|
| 3306 | #undef GpiSetDefArcParams
|
---|
| 3307 | #define GpiSetDefArcParams _GpiSetDefArcParams
|
---|
| 3308 |
|
---|
| 3309 | BOOL APIENTRY _GpiSetDefAttrs(HPS a, LONG b, ULONG c, PVOID d);
|
---|
| 3310 |
|
---|
| 3311 | #undef GpiSetDefAttrs
|
---|
| 3312 | #define GpiSetDefAttrs _GpiSetDefAttrs
|
---|
| 3313 |
|
---|
| 3314 | BOOL APIENTRY _GpiSetDefaultViewMatrix(HPS a, LONG b, PMATRIXLF c, LONG d);
|
---|
| 3315 |
|
---|
| 3316 | #undef GpiSetDefaultViewMatrix
|
---|
| 3317 | #define GpiSetDefaultViewMatrix _GpiSetDefaultViewMatrix
|
---|
| 3318 |
|
---|
| 3319 | BOOL APIENTRY _GpiSetDefTag(HPS a, LONG b);
|
---|
| 3320 |
|
---|
| 3321 | #undef GpiSetDefTag
|
---|
| 3322 | #define GpiSetDefTag _GpiSetDefTag
|
---|
| 3323 |
|
---|
| 3324 | BOOL APIENTRY _GpiSetDefViewingLimits(HPS a, PRECTL b);
|
---|
| 3325 |
|
---|
| 3326 | #undef GpiSetDefViewingLimits
|
---|
| 3327 | #define GpiSetDefViewingLimits _GpiSetDefViewingLimits
|
---|
| 3328 |
|
---|
| 3329 | BOOL APIENTRY _GpiSetEditMode(HPS a, LONG b);
|
---|
| 3330 |
|
---|
| 3331 | #undef GpiSetEditMode
|
---|
| 3332 | #define GpiSetEditMode _GpiSetEditMode
|
---|
| 3333 |
|
---|
| 3334 | BOOL APIENTRY _GpiSetElementPointer(HPS a, LONG b);
|
---|
| 3335 |
|
---|
| 3336 | #undef GpiSetElementPointer
|
---|
| 3337 | #define GpiSetElementPointer _GpiSetElementPointer
|
---|
| 3338 |
|
---|
| 3339 | BOOL APIENTRY _GpiSetElementPointerAtLabel(HPS a, LONG b);
|
---|
| 3340 |
|
---|
| 3341 | #undef GpiSetElementPointerAtLabel
|
---|
| 3342 | #define GpiSetElementPointerAtLabel _GpiSetElementPointerAtLabel
|
---|
| 3343 |
|
---|
| 3344 | BOOL APIENTRY _GpiSetGraphicsField(HPS a, PRECTL b);
|
---|
| 3345 |
|
---|
| 3346 | #undef GpiSetGraphicsField
|
---|
| 3347 | #define GpiSetGraphicsField _GpiSetGraphicsField
|
---|
| 3348 |
|
---|
| 3349 | BOOL APIENTRY _GpiSetLineEnd(HPS a, LONG b);
|
---|
| 3350 |
|
---|
| 3351 | #undef GpiSetLineEnd
|
---|
| 3352 | #define GpiSetLineEnd _GpiSetLineEnd
|
---|
| 3353 |
|
---|
| 3354 | BOOL APIENTRY _GpiSetLineJoin(HPS a, LONG b);
|
---|
| 3355 |
|
---|
| 3356 | #undef GpiSetLineJoin
|
---|
| 3357 | #define GpiSetLineJoin _GpiSetLineJoin
|
---|
| 3358 |
|
---|
| 3359 | BOOL APIENTRY _GpiSetLineType(HPS a, LONG b);
|
---|
| 3360 |
|
---|
| 3361 | #undef GpiSetLineType
|
---|
| 3362 | #define GpiSetLineType _GpiSetLineType
|
---|
| 3363 |
|
---|
| 3364 | BOOL APIENTRY _GpiSetLineWidth(HPS a, FIXED b);
|
---|
| 3365 |
|
---|
| 3366 | #undef GpiSetLineWidth
|
---|
| 3367 | #define GpiSetLineWidth _GpiSetLineWidth
|
---|
| 3368 |
|
---|
| 3369 | BOOL APIENTRY _GpiSetLineWidthGeom(HPS a, LONG b);
|
---|
| 3370 |
|
---|
| 3371 | #undef GpiSetLineWidthGeom
|
---|
| 3372 | #define GpiSetLineWidthGeom _GpiSetLineWidthGeom
|
---|
| 3373 |
|
---|
| 3374 | BOOL APIENTRY _GpiSetMarker(HPS a, LONG b);
|
---|
| 3375 |
|
---|
| 3376 | #undef GpiSetMarker
|
---|
| 3377 | #define GpiSetMarker _GpiSetMarker
|
---|
| 3378 |
|
---|
| 3379 | BOOL APIENTRY _GpiSetMarkerBox(HPS a, PSIZEF b);
|
---|
| 3380 |
|
---|
| 3381 | #undef GpiSetMarkerBox
|
---|
| 3382 | #define GpiSetMarkerBox _GpiSetMarkerBox
|
---|
| 3383 |
|
---|
| 3384 | BOOL APIENTRY _GpiSetMarkerSet(HPS a, LONG b);
|
---|
| 3385 |
|
---|
| 3386 | #undef GpiSetMarkerSet
|
---|
| 3387 | #define GpiSetMarkerSet _GpiSetMarkerSet
|
---|
| 3388 |
|
---|
| 3389 | BOOL APIENTRY _GpiSetMetaFileBits(HMF a, LONG b, LONG c, PBYTE d);
|
---|
| 3390 |
|
---|
| 3391 | #undef GpiSetMetaFileBits
|
---|
| 3392 | #define GpiSetMetaFileBits _GpiSetMetaFileBits
|
---|
| 3393 |
|
---|
| 3394 | BOOL APIENTRY _GpiSetMix(HPS a, LONG b);
|
---|
| 3395 |
|
---|
| 3396 | #undef GpiSetMix
|
---|
| 3397 | #define GpiSetMix _GpiSetMix
|
---|
| 3398 |
|
---|
| 3399 | BOOL APIENTRY _GpiSetModelTransformMatrix(HPS a, LONG b, PMATRIXLF c, LONG d);
|
---|
| 3400 |
|
---|
| 3401 | #undef GpiSetModelTransformMatrix
|
---|
| 3402 | #define GpiSetModelTransformMatrix _GpiSetModelTransformMatrix
|
---|
| 3403 |
|
---|
| 3404 | BOOL APIENTRY _GpiSetPageViewport(HPS a, PRECTL b);
|
---|
| 3405 |
|
---|
| 3406 | #undef GpiSetPageViewport
|
---|
| 3407 | #define GpiSetPageViewport _GpiSetPageViewport
|
---|
| 3408 |
|
---|
| 3409 | BOOL APIENTRY _GpiSetPaletteEntries(HPAL a, ULONG b, ULONG c, ULONG d, ULONG *e);
|
---|
| 3410 |
|
---|
| 3411 | #undef GpiSetPaletteEntries
|
---|
| 3412 | #define GpiSetPaletteEntries _GpiSetPaletteEntries
|
---|
| 3413 |
|
---|
| 3414 | BOOL APIENTRY _GpiSetPattern(HPS a, LONG b);
|
---|
| 3415 |
|
---|
| 3416 | #undef GpiSetPattern
|
---|
| 3417 | #define GpiSetPattern _GpiSetPattern
|
---|
| 3418 |
|
---|
| 3419 | BOOL APIENTRY _GpiSetPatternRefPoint(HPS a, PPOINTL b);
|
---|
| 3420 |
|
---|
| 3421 | #undef GpiSetPatternRefPoint
|
---|
| 3422 | #define GpiSetPatternRefPoint _GpiSetPatternRefPoint
|
---|
| 3423 |
|
---|
| 3424 | BOOL APIENTRY _GpiSetPatternSet(HPS a, LONG b);
|
---|
| 3425 |
|
---|
| 3426 | #undef GpiSetPatternSet
|
---|
| 3427 | #define GpiSetPatternSet _GpiSetPatternSet
|
---|
| 3428 |
|
---|
| 3429 | BOOL APIENTRY _GpiSetRegion(HPS a, HRGN b, LONG c, PRECTL d);
|
---|
| 3430 |
|
---|
| 3431 | #undef GpiSetRegion
|
---|
| 3432 | #define GpiSetRegion _GpiSetRegion
|
---|
| 3433 |
|
---|
| 3434 | BOOL APIENTRY _GpiSetSegmentTransformMatrix(HPS a, LONG b, LONG c, MATRIXLF *d, LONG e);
|
---|
| 3435 |
|
---|
| 3436 | #undef GpiSetSegmentTransformMatrix
|
---|
| 3437 | #define GpiSetSegmentTransformMatrix _GpiSetSegmentTransformMatrix
|
---|
| 3438 |
|
---|
| 3439 | BOOL APIENTRY _GpiSetTextAlignment(HPS a, LONG b, LONG c);
|
---|
| 3440 |
|
---|
| 3441 | #undef GpiSetTextAlignment
|
---|
| 3442 | #define GpiSetTextAlignment _GpiSetTextAlignment
|
---|
| 3443 |
|
---|
| 3444 | BOOL APIENTRY _GpiSetViewingLimits(HPS a, PRECTL b);
|
---|
| 3445 |
|
---|
| 3446 | #undef GpiSetViewingLimits
|
---|
| 3447 | #define GpiSetViewingLimits _GpiSetViewingLimits
|
---|
| 3448 |
|
---|
| 3449 | BOOL APIENTRY _GpiSetViewingTransformMatrix(HPS a, LONG b, MATRIXLF *c, LONG d);
|
---|
| 3450 |
|
---|
| 3451 | #undef GpiSetViewingTransformMatrix
|
---|
| 3452 | #define GpiSetViewingTransformMatrix _GpiSetViewingTransformMatrix
|
---|
| 3453 |
|
---|
| 3454 | LONG APIENTRY _GpiStrokePath(HPS a, LONG b, ULONG c);
|
---|
| 3455 |
|
---|
| 3456 | #undef GpiStrokePath
|
---|
| 3457 | #define GpiStrokePath _GpiStrokePath
|
---|
| 3458 |
|
---|
| 3459 | BOOL APIENTRY _GpiTranslate(HPS a, PMATRIXLF b, LONG c, PPOINTL d);
|
---|
| 3460 |
|
---|
| 3461 | #undef GpiTranslate
|
---|
| 3462 | #define GpiTranslate _GpiTranslate
|
---|
| 3463 |
|
---|
| 3464 | BOOL APIENTRY _GpiUnloadFonts(HAB a, PCSZ b);
|
---|
| 3465 |
|
---|
| 3466 | #undef GpiUnloadFonts
|
---|
| 3467 | #define GpiUnloadFonts _GpiUnloadFonts
|
---|
| 3468 |
|
---|
| 3469 | BOOL APIENTRY _GpiUnloadPublicFonts(HAB a, PCSZ b);
|
---|
| 3470 |
|
---|
| 3471 | #undef GpiUnloadPublicFonts
|
---|
| 3472 | #define GpiUnloadPublicFonts _GpiUnloadPublicFonts
|
---|
| 3473 |
|
---|
| 3474 | #ifdef INCL_GPIBITMAPS
|
---|
| 3475 | LONG APIENTRY _GpiBitBlt(HPS a, HPS b, LONG c, PPOINTL d, LONG e, ULONG f);
|
---|
| 3476 |
|
---|
| 3477 | #undef GpiBitBlt
|
---|
| 3478 | #define GpiBitBlt _GpiBitBlt
|
---|
| 3479 |
|
---|
| 3480 | BOOL APIENTRY _GpiDeleteBitmap(HBITMAP a);
|
---|
| 3481 |
|
---|
| 3482 | #undef GpiDeleteBitmap
|
---|
| 3483 | #define GpiDeleteBitmap _GpiDeleteBitmap
|
---|
| 3484 |
|
---|
| 3485 | HBITMAP APIENTRY _GpiLoadBitmap(HPS a, HMODULE b, ULONG c, LONG d, LONG e);
|
---|
| 3486 |
|
---|
| 3487 | #undef GpiLoadBitmap
|
---|
| 3488 | #define GpiLoadBitmap _GpiLoadBitmap
|
---|
| 3489 |
|
---|
| 3490 | HBITMAP APIENTRY _GpiSetBitmap(HPS a, HBITMAP b);
|
---|
| 3491 |
|
---|
| 3492 | #undef GpiSetBitmap
|
---|
| 3493 | #define GpiSetBitmap _GpiSetBitmap
|
---|
| 3494 |
|
---|
| 3495 | LONG APIENTRY _GpiWCBitBlt(HPS a, HBITMAP b, LONG c, PPOINTL d, LONG e, ULONG f);
|
---|
| 3496 |
|
---|
| 3497 | #undef GpiWCBitBlt
|
---|
| 3498 | #define GpiWCBitBlt _GpiWCBitBlt
|
---|
| 3499 |
|
---|
| 3500 | HBITMAP APIENTRY _GpiCreateBitmap(HPS a, BITMAPINFOHEADER2 *b, ULONG c, PBYTE d, BITMAPINFO2 *e);
|
---|
| 3501 |
|
---|
| 3502 | #undef GpiCreateBitmap
|
---|
| 3503 | #define GpiCreateBitmap _GpiCreateBitmap
|
---|
| 3504 |
|
---|
| 3505 | LONG APIENTRY _GpiDrawBits(HPS a, PVOID b, BITMAPINFO2 *c, LONG d, PPOINTL e, LONG f, ULONG g);
|
---|
| 3506 |
|
---|
| 3507 | #undef GpiDrawBits
|
---|
| 3508 | #define GpiDrawBits _GpiDrawBits
|
---|
| 3509 |
|
---|
| 3510 | LONG APIENTRY _GpiFloodFill(HPS a, LONG b, LONG c);
|
---|
| 3511 |
|
---|
| 3512 | #undef GpiFloodFill
|
---|
| 3513 | #define GpiFloodFill _GpiFloodFill
|
---|
| 3514 |
|
---|
| 3515 | LONG APIENTRY _GpiQueryBitmapBits(HPS a, LONG b, LONG c, PBYTE d, PBITMAPINFO2 e);
|
---|
| 3516 |
|
---|
| 3517 | #undef GpiQueryBitmapBits
|
---|
| 3518 | #define GpiQueryBitmapBits _GpiQueryBitmapBits
|
---|
| 3519 |
|
---|
| 3520 | BOOL APIENTRY _GpiQueryBitmapDimension(HBITMAP a, PSIZEL b);
|
---|
| 3521 |
|
---|
| 3522 | #undef GpiQueryBitmapDimension
|
---|
| 3523 | #define GpiQueryBitmapDimension _GpiQueryBitmapDimension
|
---|
| 3524 |
|
---|
| 3525 | HBITMAP APIENTRY _GpiQueryBitmapHandle(HPS a, LONG b);
|
---|
| 3526 |
|
---|
| 3527 | #undef GpiQueryBitmapHandle
|
---|
| 3528 | #define GpiQueryBitmapHandle _GpiQueryBitmapHandle
|
---|
| 3529 |
|
---|
| 3530 | BOOL APIENTRY _GpiQueryBitmapInfoHeader(HBITMAP a, PBITMAPINFOHEADER2 b);
|
---|
| 3531 |
|
---|
| 3532 | #undef GpiQueryBitmapInfoHeader
|
---|
| 3533 | #define GpiQueryBitmapInfoHeader _GpiQueryBitmapInfoHeader
|
---|
| 3534 |
|
---|
| 3535 | BOOL APIENTRY _GpiQueryBitmapParameters(HBITMAP a, PBITMAPINFOHEADER b);
|
---|
| 3536 |
|
---|
| 3537 | #undef GpiQueryBitmapParameters
|
---|
| 3538 | #define GpiQueryBitmapParameters _GpiQueryBitmapParameters
|
---|
| 3539 |
|
---|
| 3540 | BOOL APIENTRY _GpiQueryDeviceBitmapFormats(HPS a, LONG b, PLONG c);
|
---|
| 3541 |
|
---|
| 3542 | #undef GpiQueryDeviceBitmapFormats
|
---|
| 3543 | #define GpiQueryDeviceBitmapFormats _GpiQueryDeviceBitmapFormats
|
---|
| 3544 |
|
---|
| 3545 | LONG APIENTRY _GpiSetBitmapBits(HPS a, LONG b, LONG c, PBYTE d, BITMAPINFO2 *e);
|
---|
| 3546 |
|
---|
| 3547 | #undef GpiSetBitmapBits
|
---|
| 3548 | #define GpiSetBitmapBits _GpiSetBitmapBits
|
---|
| 3549 |
|
---|
| 3550 | LONG APIENTRY _GpiQueryPel(HPS a, PPOINTL b);
|
---|
| 3551 |
|
---|
| 3552 | #undef GpiQueryPel
|
---|
| 3553 | #define GpiQueryPel _GpiQueryPel
|
---|
| 3554 |
|
---|
| 3555 | BOOL APIENTRY _GpiSetBitmapDimension(HBITMAP a, SIZEL *b);
|
---|
| 3556 |
|
---|
| 3557 | #undef GpiSetBitmapDimension
|
---|
| 3558 | #define GpiSetBitmapDimension _GpiSetBitmapDimension
|
---|
| 3559 |
|
---|
| 3560 | BOOL APIENTRY _GpiSetBitmapId(HPS a, HBITMAP b, LONG c);
|
---|
| 3561 |
|
---|
| 3562 | #undef GpiSetBitmapId
|
---|
| 3563 | #define GpiSetBitmapId _GpiSetBitmapId
|
---|
| 3564 |
|
---|
| 3565 | LONG APIENTRY _GpiSetPel(HPS a, PPOINTL b);
|
---|
| 3566 |
|
---|
| 3567 | #undef GpiSetPel
|
---|
| 3568 | #define GpiSetPel _GpiSetPel
|
---|
| 3569 |
|
---|
| 3570 | #endif
|
---|
| 3571 | #ifdef INCL_GPICONTROL
|
---|
| 3572 | BOOL APIENTRY _GpiAssociate(HPS a, HDC b);
|
---|
| 3573 |
|
---|
| 3574 | #undef GpiAssociate
|
---|
| 3575 | #define GpiAssociate _GpiAssociate
|
---|
| 3576 |
|
---|
| 3577 | HPS APIENTRY _GpiCreatePS(HAB a, HDC b, PSIZEL c, ULONG d);
|
---|
| 3578 |
|
---|
| 3579 | #undef GpiCreatePS
|
---|
| 3580 | #define GpiCreatePS _GpiCreatePS
|
---|
| 3581 |
|
---|
| 3582 | BOOL APIENTRY _GpiDestroyPS(HPS a);
|
---|
| 3583 |
|
---|
| 3584 | #undef GpiDestroyPS
|
---|
| 3585 | #define GpiDestroyPS _GpiDestroyPS
|
---|
| 3586 |
|
---|
| 3587 | BOOL APIENTRY _GpiErase(HPS a);
|
---|
| 3588 |
|
---|
| 3589 | #undef GpiErase
|
---|
| 3590 | #define GpiErase _GpiErase
|
---|
| 3591 |
|
---|
| 3592 | HDC APIENTRY _GpiQueryDevice(HPS a);
|
---|
| 3593 |
|
---|
| 3594 | #undef GpiQueryDevice
|
---|
| 3595 | #define GpiQueryDevice _GpiQueryDevice
|
---|
| 3596 |
|
---|
| 3597 | BOOL APIENTRY _GpiRestorePS(HPS a, LONG b);
|
---|
| 3598 |
|
---|
| 3599 | #undef GpiRestorePS
|
---|
| 3600 | #define GpiRestorePS _GpiRestorePS
|
---|
| 3601 |
|
---|
| 3602 | LONG APIENTRY _GpiSavePS(HPS a);
|
---|
| 3603 |
|
---|
| 3604 | #undef GpiSavePS
|
---|
| 3605 | #define GpiSavePS _GpiSavePS
|
---|
| 3606 |
|
---|
| 3607 | LONG APIENTRY _GpiErrorSegmentData(HPS a, PLONG b, PLONG c);
|
---|
| 3608 |
|
---|
| 3609 | #undef GpiErrorSegmentData
|
---|
| 3610 | #define GpiErrorSegmentData _GpiErrorSegmentData
|
---|
| 3611 |
|
---|
| 3612 | LONG APIENTRY _GpiQueryDrawControl(HPS a, LONG b);
|
---|
| 3613 |
|
---|
| 3614 | #undef GpiQueryDrawControl
|
---|
| 3615 | #define GpiQueryDrawControl _GpiQueryDrawControl
|
---|
| 3616 |
|
---|
| 3617 | LONG APIENTRY _GpiQueryDrawingMode(HPS a);
|
---|
| 3618 |
|
---|
| 3619 | #undef GpiQueryDrawingMode
|
---|
| 3620 | #define GpiQueryDrawingMode _GpiQueryDrawingMode
|
---|
| 3621 |
|
---|
| 3622 | ULONG APIENTRY _GpiQueryPS(HPS a, PSIZEL b);
|
---|
| 3623 |
|
---|
| 3624 | #undef GpiQueryPS
|
---|
| 3625 | #define GpiQueryPS _GpiQueryPS
|
---|
| 3626 |
|
---|
| 3627 | BOOL APIENTRY _GpiResetPS(HPS a, ULONG b);
|
---|
| 3628 |
|
---|
| 3629 | #undef GpiResetPS
|
---|
| 3630 | #define GpiResetPS _GpiResetPS
|
---|
| 3631 |
|
---|
| 3632 | LONG APIENTRY _GpiQueryStopDraw(HPS a);
|
---|
| 3633 |
|
---|
| 3634 | #undef GpiQueryStopDraw
|
---|
| 3635 | #define GpiQueryStopDraw _GpiQueryStopDraw
|
---|
| 3636 |
|
---|
| 3637 | BOOL APIENTRY _GpiSetDrawControl(HPS a, LONG b, LONG c);
|
---|
| 3638 |
|
---|
| 3639 | #undef GpiSetDrawControl
|
---|
| 3640 | #define GpiSetDrawControl _GpiSetDrawControl
|
---|
| 3641 |
|
---|
| 3642 | BOOL APIENTRY _GpiSetDrawingMode(HPS a, LONG b);
|
---|
| 3643 |
|
---|
| 3644 | #undef GpiSetDrawingMode
|
---|
| 3645 | #define GpiSetDrawingMode _GpiSetDrawingMode
|
---|
| 3646 |
|
---|
| 3647 | BOOL APIENTRY _GpiSetPS(HPS a, SIZEL *b, ULONG c);
|
---|
| 3648 |
|
---|
| 3649 | #undef GpiSetPS
|
---|
| 3650 | #define GpiSetPS _GpiSetPS
|
---|
| 3651 |
|
---|
| 3652 | BOOL APIENTRY _GpiSetStopDraw(HPS a, LONG b);
|
---|
| 3653 |
|
---|
| 3654 | #undef GpiSetStopDraw
|
---|
| 3655 | #define GpiSetStopDraw _GpiSetStopDraw
|
---|
| 3656 |
|
---|
| 3657 | #endif
|
---|
| 3658 | #ifdef INCL_GPICORRELATION
|
---|
| 3659 | LONG APIENTRY _GpiCorrelateChain(HPS a, LONG b, PPOINTL c, LONG d, LONG e, PLONG f);
|
---|
| 3660 |
|
---|
| 3661 | #undef GpiCorrelateChain
|
---|
| 3662 | #define GpiCorrelateChain _GpiCorrelateChain
|
---|
| 3663 |
|
---|
| 3664 | LONG APIENTRY _GpiCorrelateFrom(HPS a, LONG b, LONG c, LONG d, PPOINTL e, LONG f, LONG g, PLONG h);
|
---|
| 3665 |
|
---|
| 3666 | #undef GpiCorrelateFrom
|
---|
| 3667 | #define GpiCorrelateFrom _GpiCorrelateFrom
|
---|
| 3668 |
|
---|
| 3669 | LONG APIENTRY _GpiCorrelateSegment(HPS a, LONG b, LONG c, PPOINTL d, LONG e, LONG f, PLONG g);
|
---|
| 3670 |
|
---|
| 3671 | #undef GpiCorrelateSegment
|
---|
| 3672 | #define GpiCorrelateSegment _GpiCorrelateSegment
|
---|
| 3673 |
|
---|
| 3674 | BOOL APIENTRY _GpiQueryBoundaryData(HPS a, PRECTL b);
|
---|
| 3675 |
|
---|
| 3676 | #undef GpiQueryBoundaryData
|
---|
| 3677 | #define GpiQueryBoundaryData _GpiQueryBoundaryData
|
---|
| 3678 |
|
---|
| 3679 | BOOL APIENTRY _GpiQueryPickAperturePosition(HPS a, PPOINTL b);
|
---|
| 3680 |
|
---|
| 3681 | #undef GpiQueryPickAperturePosition
|
---|
| 3682 | #define GpiQueryPickAperturePosition _GpiQueryPickAperturePosition
|
---|
| 3683 |
|
---|
| 3684 | BOOL APIENTRY _GpiQueryPickApertureSize(HPS a, PSIZEL b);
|
---|
| 3685 |
|
---|
| 3686 | #undef GpiQueryPickApertureSize
|
---|
| 3687 | #define GpiQueryPickApertureSize _GpiQueryPickApertureSize
|
---|
| 3688 |
|
---|
| 3689 | BOOL APIENTRY _GpiQueryTag(HPS a, PLONG b);
|
---|
| 3690 |
|
---|
| 3691 | #undef GpiQueryTag
|
---|
| 3692 | #define GpiQueryTag _GpiQueryTag
|
---|
| 3693 |
|
---|
| 3694 | BOOL APIENTRY _GpiResetBoundaryData(HPS a);
|
---|
| 3695 |
|
---|
| 3696 | #undef GpiResetBoundaryData
|
---|
| 3697 | #define GpiResetBoundaryData _GpiResetBoundaryData
|
---|
| 3698 |
|
---|
| 3699 | BOOL APIENTRY _GpiSetPickAperturePosition(HPS a, PPOINTL b);
|
---|
| 3700 |
|
---|
| 3701 | #undef GpiSetPickAperturePosition
|
---|
| 3702 | #define GpiSetPickAperturePosition _GpiSetPickAperturePosition
|
---|
| 3703 |
|
---|
| 3704 | BOOL APIENTRY _GpiSetPickApertureSize(HPS a, LONG b, SIZEL *c);
|
---|
| 3705 |
|
---|
| 3706 | #undef GpiSetPickApertureSize
|
---|
| 3707 | #define GpiSetPickApertureSize _GpiSetPickApertureSize
|
---|
| 3708 |
|
---|
| 3709 | BOOL APIENTRY _GpiSetTag(HPS a, LONG b);
|
---|
| 3710 |
|
---|
| 3711 | #undef GpiSetTag
|
---|
| 3712 | #define GpiSetTag _GpiSetTag
|
---|
| 3713 |
|
---|
| 3714 | #endif
|
---|
| 3715 | #ifdef INCL_GPIINK
|
---|
| 3716 | BOOL APIENTRY _GpiBeginInkPath(HPS a, LONG b, ULONG c);
|
---|
| 3717 |
|
---|
| 3718 | #undef GpiBeginInkPath
|
---|
| 3719 | #define GpiBeginInkPath _GpiBeginInkPath
|
---|
| 3720 |
|
---|
| 3721 | BOOL APIENTRY _GpiEndInkPath(HPS a, ULONG b);
|
---|
| 3722 |
|
---|
| 3723 | #undef GpiEndInkPath
|
---|
| 3724 | #define GpiEndInkPath _GpiEndInkPath
|
---|
| 3725 |
|
---|
| 3726 | LONG APIENTRY _GpiStrokeInkPath(HPS a, LONG b, LONG c, PPOINTL d, ULONG e);
|
---|
| 3727 |
|
---|
| 3728 | #undef GpiStrokeInkPath
|
---|
| 3729 | #define GpiStrokeInkPath _GpiStrokeInkPath
|
---|
| 3730 |
|
---|
| 3731 | #endif
|
---|
| 3732 | #ifdef INCL_GPISEGMENTS
|
---|
| 3733 | BOOL APIENTRY _GpiCloseSegment(HPS a);
|
---|
| 3734 |
|
---|
| 3735 | #undef GpiCloseSegment
|
---|
| 3736 | #define GpiCloseSegment _GpiCloseSegment
|
---|
| 3737 |
|
---|
| 3738 | BOOL APIENTRY _GpiDeleteSegment(HPS a, LONG b);
|
---|
| 3739 |
|
---|
| 3740 | #undef GpiDeleteSegment
|
---|
| 3741 | #define GpiDeleteSegment _GpiDeleteSegment
|
---|
| 3742 |
|
---|
| 3743 | BOOL APIENTRY _GpiDeleteSegments(HPS a, LONG b, LONG c);
|
---|
| 3744 |
|
---|
| 3745 | #undef GpiDeleteSegments
|
---|
| 3746 | #define GpiDeleteSegments _GpiDeleteSegments
|
---|
| 3747 |
|
---|
| 3748 | BOOL APIENTRY _GpiDrawChain(HPS a);
|
---|
| 3749 |
|
---|
| 3750 | #undef GpiDrawChain
|
---|
| 3751 | #define GpiDrawChain _GpiDrawChain
|
---|
| 3752 |
|
---|
| 3753 | BOOL APIENTRY _GpiDrawDynamics(HPS a);
|
---|
| 3754 |
|
---|
| 3755 | #undef GpiDrawDynamics
|
---|
| 3756 | #define GpiDrawDynamics _GpiDrawDynamics
|
---|
| 3757 |
|
---|
| 3758 | BOOL APIENTRY _GpiDrawFrom(HPS a, LONG b, LONG c);
|
---|
| 3759 |
|
---|
| 3760 | #undef GpiDrawFrom
|
---|
| 3761 | #define GpiDrawFrom _GpiDrawFrom
|
---|
| 3762 |
|
---|
| 3763 | BOOL APIENTRY _GpiDrawSegment(HPS a, LONG b);
|
---|
| 3764 |
|
---|
| 3765 | #undef GpiDrawSegment
|
---|
| 3766 | #define GpiDrawSegment _GpiDrawSegment
|
---|
| 3767 |
|
---|
| 3768 | LONG APIENTRY _GpiGetData(HPS a, LONG b, PLONG c, LONG d, LONG e, PBYTE f);
|
---|
| 3769 |
|
---|
| 3770 | #undef GpiGetData
|
---|
| 3771 | #define GpiGetData _GpiGetData
|
---|
| 3772 |
|
---|
| 3773 | BOOL APIENTRY _GpiOpenSegment(HPS a, LONG b);
|
---|
| 3774 |
|
---|
| 3775 | #undef GpiOpenSegment
|
---|
| 3776 | #define GpiOpenSegment _GpiOpenSegment
|
---|
| 3777 |
|
---|
| 3778 | LONG APIENTRY _GpiPutData(HPS a, LONG b, PLONG c, PBYTE d);
|
---|
| 3779 |
|
---|
| 3780 | #undef GpiPutData
|
---|
| 3781 | #define GpiPutData _GpiPutData
|
---|
| 3782 |
|
---|
| 3783 | LONG APIENTRY _GpiQueryInitialSegmentAttrs(HPS a, LONG b);
|
---|
| 3784 |
|
---|
| 3785 | #undef GpiQueryInitialSegmentAttrs
|
---|
| 3786 | #define GpiQueryInitialSegmentAttrs _GpiQueryInitialSegmentAttrs
|
---|
| 3787 |
|
---|
| 3788 | LONG APIENTRY _GpiQuerySegmentAttrs(HPS a, LONG b, LONG c);
|
---|
| 3789 |
|
---|
| 3790 | #undef GpiQuerySegmentAttrs
|
---|
| 3791 | #define GpiQuerySegmentAttrs _GpiQuerySegmentAttrs
|
---|
| 3792 |
|
---|
| 3793 | LONG APIENTRY _GpiQuerySegmentNames(HPS a, LONG b, LONG c, LONG d, PLONG e);
|
---|
| 3794 |
|
---|
| 3795 | #undef GpiQuerySegmentNames
|
---|
| 3796 | #define GpiQuerySegmentNames _GpiQuerySegmentNames
|
---|
| 3797 |
|
---|
| 3798 | LONG APIENTRY _GpiQuerySegmentPriority(HPS a, LONG b, LONG c);
|
---|
| 3799 |
|
---|
| 3800 | #undef GpiQuerySegmentPriority
|
---|
| 3801 | #define GpiQuerySegmentPriority _GpiQuerySegmentPriority
|
---|
| 3802 |
|
---|
| 3803 | BOOL APIENTRY _GpiRemoveDynamics(HPS a, LONG b, LONG c);
|
---|
| 3804 |
|
---|
| 3805 | #undef GpiRemoveDynamics
|
---|
| 3806 | #define GpiRemoveDynamics _GpiRemoveDynamics
|
---|
| 3807 |
|
---|
| 3808 | BOOL APIENTRY _GpiSetInitialSegmentAttrs(HPS a, LONG b, LONG c);
|
---|
| 3809 |
|
---|
| 3810 | #undef GpiSetInitialSegmentAttrs
|
---|
| 3811 | #define GpiSetInitialSegmentAttrs _GpiSetInitialSegmentAttrs
|
---|
| 3812 |
|
---|
| 3813 | BOOL APIENTRY _GpiSetSegmentAttrs(HPS a, LONG b, LONG c, LONG d);
|
---|
| 3814 |
|
---|
| 3815 | #undef GpiSetSegmentAttrs
|
---|
| 3816 | #define GpiSetSegmentAttrs _GpiSetSegmentAttrs
|
---|
| 3817 |
|
---|
| 3818 | BOOL APIENTRY _GpiSetSegmentPriority(HPS a, LONG b, LONG c, LONG d);
|
---|
| 3819 |
|
---|
| 3820 | #undef GpiSetSegmentPriority
|
---|
| 3821 | #define GpiSetSegmentPriority _GpiSetSegmentPriority
|
---|
| 3822 |
|
---|
| 3823 | #endif
|
---|
| 3824 | #ifdef INCL_DEV
|
---|
| 3825 | LONG APIENTRY _DevEscape(HDC a, LONG b, LONG c, PBYTE d, PLONG e, PBYTE f);
|
---|
| 3826 |
|
---|
| 3827 | #undef DevEscape
|
---|
| 3828 | #define DevEscape _DevEscape
|
---|
| 3829 |
|
---|
| 3830 | LONG APIENTRY _DevPostEscape(PCSZ a, PCSZ b, PCSZ c, PCSZ d, ULONG e, ULONG f, PBYTE g, ULONG h, PBYTE i);
|
---|
| 3831 |
|
---|
| 3832 | #undef DevPostEscape
|
---|
| 3833 | #define DevPostEscape _DevPostEscape
|
---|
| 3834 |
|
---|
| 3835 | LONG APIENTRY _DevPostDeviceModes(HAB a, PDRIVDATA b, PCSZ c, PCSZ d, PCSZ e, ULONG f);
|
---|
| 3836 |
|
---|
| 3837 | #undef DevPostDeviceModes
|
---|
| 3838 | #define DevPostDeviceModes _DevPostDeviceModes
|
---|
| 3839 |
|
---|
| 3840 | BOOL APIENTRY _DevQueryDeviceNames(HAB a, PCSZ b, PLONG c, PSTR32 d, PSTR64 e, PLONG f, PSTR16 g);
|
---|
| 3841 |
|
---|
| 3842 | #undef DevQueryDeviceNames
|
---|
| 3843 | #define DevQueryDeviceNames _DevQueryDeviceNames
|
---|
| 3844 |
|
---|
| 3845 | LONG APIENTRY _DevQueryHardcopyCaps(HDC a, LONG b, LONG c, PHCINFO d);
|
---|
| 3846 |
|
---|
| 3847 | #undef DevQueryHardcopyCaps
|
---|
| 3848 | #define DevQueryHardcopyCaps _DevQueryHardcopyCaps
|
---|
| 3849 |
|
---|
| 3850 | #endif
|
---|
| 3851 | HMF APIENTRY _DevCloseDC(HDC a);
|
---|
| 3852 |
|
---|
| 3853 | #undef DevCloseDC
|
---|
| 3854 | #define DevCloseDC _DevCloseDC
|
---|
| 3855 |
|
---|
| 3856 | HDC APIENTRY _DevOpenDC(HAB a, LONG b, PCSZ c, LONG d, PDEVOPENDATA e, HDC f);
|
---|
| 3857 |
|
---|
| 3858 | #undef DevOpenDC
|
---|
| 3859 | #define DevOpenDC _DevOpenDC
|
---|
| 3860 |
|
---|
| 3861 | BOOL APIENTRY _DevQueryCaps(HDC a, LONG b, LONG c, PLONG d);
|
---|
| 3862 |
|
---|
| 3863 | #undef DevQueryCaps
|
---|
| 3864 | #define DevQueryCaps _DevQueryCaps
|
---|
| 3865 |
|
---|
| 3866 | #endif
|
---|
| 3867 | #ifdef INCL_WINPROGRAMLIST
|
---|
| 3868 | HPROGRAM APIENTRY _PrfAddProgram(HINI a, PPROGDETAILS b, HPROGRAM c);
|
---|
| 3869 |
|
---|
| 3870 | #undef PrfAddProgram
|
---|
| 3871 | #define PrfAddProgram _PrfAddProgram
|
---|
| 3872 |
|
---|
| 3873 | BOOL APIENTRY _PrfChangeProgram(HINI a, HPROGRAM b, PPROGDETAILS c);
|
---|
| 3874 |
|
---|
| 3875 | #undef PrfChangeProgram
|
---|
| 3876 | #define PrfChangeProgram _PrfChangeProgram
|
---|
| 3877 |
|
---|
| 3878 | HPROGRAM APIENTRY _PrfCreateGroup(HINI a, PCSZ b, UCHAR c);
|
---|
| 3879 |
|
---|
| 3880 | #undef PrfCreateGroup
|
---|
| 3881 | #define PrfCreateGroup _PrfCreateGroup
|
---|
| 3882 |
|
---|
| 3883 | BOOL APIENTRY _PrfDestroyGroup(HINI a, HPROGRAM b);
|
---|
| 3884 |
|
---|
| 3885 | #undef PrfDestroyGroup
|
---|
| 3886 | #define PrfDestroyGroup _PrfDestroyGroup
|
---|
| 3887 |
|
---|
| 3888 | PROGCATEGORY APIENTRY _PrfQueryProgramCategory(HINI a, PCSZ b);
|
---|
| 3889 |
|
---|
| 3890 | #undef PrfQueryProgramCategory
|
---|
| 3891 | #define PrfQueryProgramCategory _PrfQueryProgramCategory
|
---|
| 3892 |
|
---|
| 3893 | ULONG APIENTRY _PrfQueryProgramHandle(HINI a, PCSZ b, PHPROGARRAY c, ULONG d, PULONG e);
|
---|
| 3894 |
|
---|
| 3895 | #undef PrfQueryProgramHandle
|
---|
| 3896 | #define PrfQueryProgramHandle _PrfQueryProgramHandle
|
---|
| 3897 |
|
---|
| 3898 | ULONG APIENTRY _PrfQueryProgramTitles(HINI a, HPROGRAM b, PPROGTITLE c, ULONG d, PULONG e);
|
---|
| 3899 |
|
---|
| 3900 | #undef PrfQueryProgramTitles
|
---|
| 3901 | #define PrfQueryProgramTitles _PrfQueryProgramTitles
|
---|
| 3902 |
|
---|
| 3903 | ULONG APIENTRY _PrfQueryDefinition(HINI a, HPROGRAM b, PPROGDETAILS c, ULONG d);
|
---|
| 3904 |
|
---|
| 3905 | #undef PrfQueryDefinition
|
---|
| 3906 | #define PrfQueryDefinition _PrfQueryDefinition
|
---|
| 3907 |
|
---|
| 3908 | BOOL APIENTRY _PrfRemoveProgram(HINI a, HPROGRAM b);
|
---|
| 3909 |
|
---|
| 3910 | #undef PrfRemoveProgram
|
---|
| 3911 | #define PrfRemoveProgram _PrfRemoveProgram
|
---|
| 3912 |
|
---|
| 3913 | HAPP APIENTRY _WinStartApp(HWND a, PPROGDETAILS b, PCSZ c, PVOID d, ULONG e);
|
---|
| 3914 |
|
---|
| 3915 | #undef WinStartApp
|
---|
| 3916 | #define WinStartApp _WinStartApp
|
---|
| 3917 |
|
---|
| 3918 | BOOL APIENTRY _WinTerminateApp(HAPP a);
|
---|
| 3919 |
|
---|
| 3920 | #undef WinTerminateApp
|
---|
| 3921 | #define WinTerminateApp _WinTerminateApp
|
---|
| 3922 |
|
---|
| 3923 | #endif
|
---|
| 3924 | #ifdef INCL_WINSWITCHLIST
|
---|
| 3925 | HSWITCH APIENTRY _WinAddSwitchEntry(PSWCNTRL a);
|
---|
| 3926 |
|
---|
| 3927 | #undef WinAddSwitchEntry
|
---|
| 3928 | #define WinAddSwitchEntry _WinAddSwitchEntry
|
---|
| 3929 |
|
---|
| 3930 | ULONG APIENTRY _WinRemoveSwitchEntry(HSWITCH a);
|
---|
| 3931 |
|
---|
| 3932 | #undef WinRemoveSwitchEntry
|
---|
| 3933 | #define WinRemoveSwitchEntry _WinRemoveSwitchEntry
|
---|
| 3934 |
|
---|
| 3935 | ULONG APIENTRY _WinChangeSwitchEntry(HSWITCH a, PSWCNTRL b);
|
---|
| 3936 |
|
---|
| 3937 | #undef WinChangeSwitchEntry
|
---|
| 3938 | #define WinChangeSwitchEntry _WinChangeSwitchEntry
|
---|
| 3939 |
|
---|
| 3940 | HSWITCH APIENTRY _WinCreateSwitchEntry(HAB a, PSWCNTRL b);
|
---|
| 3941 |
|
---|
| 3942 | #undef WinCreateSwitchEntry
|
---|
| 3943 | #define WinCreateSwitchEntry _WinCreateSwitchEntry
|
---|
| 3944 |
|
---|
| 3945 | ULONG APIENTRY _WinQuerySessionTitle(HAB a, ULONG b, PSZ c, ULONG d);
|
---|
| 3946 |
|
---|
| 3947 | #undef WinQuerySessionTitle
|
---|
| 3948 | #define WinQuerySessionTitle _WinQuerySessionTitle
|
---|
| 3949 |
|
---|
| 3950 | ULONG APIENTRY _WinQuerySwitchEntry(HSWITCH a, PSWCNTRL b);
|
---|
| 3951 |
|
---|
| 3952 | #undef WinQuerySwitchEntry
|
---|
| 3953 | #define WinQuerySwitchEntry _WinQuerySwitchEntry
|
---|
| 3954 |
|
---|
| 3955 | HSWITCH APIENTRY _WinQuerySwitchHandle(HWND a, PID b);
|
---|
| 3956 |
|
---|
| 3957 | #undef WinQuerySwitchHandle
|
---|
| 3958 | #define WinQuerySwitchHandle _WinQuerySwitchHandle
|
---|
| 3959 |
|
---|
| 3960 | ULONG APIENTRY _WinQuerySwitchList(HAB a, PSWBLOCK b, ULONG c);
|
---|
| 3961 |
|
---|
| 3962 | #undef WinQuerySwitchList
|
---|
| 3963 | #define WinQuerySwitchList _WinQuerySwitchList
|
---|
| 3964 |
|
---|
| 3965 | ULONG APIENTRY _WinQueryTaskSizePos(HAB a, ULONG b, PSWP c);
|
---|
| 3966 |
|
---|
| 3967 | #undef WinQueryTaskSizePos
|
---|
| 3968 | #define WinQueryTaskSizePos _WinQueryTaskSizePos
|
---|
| 3969 |
|
---|
| 3970 | ULONG APIENTRY _WinQueryTaskTitle(ULONG a, PSZ b, ULONG c);
|
---|
| 3971 |
|
---|
| 3972 | #undef WinQueryTaskTitle
|
---|
| 3973 | #define WinQueryTaskTitle _WinQueryTaskTitle
|
---|
| 3974 |
|
---|
| 3975 | ULONG APIENTRY _WinSwitchToProgram(HSWITCH a);
|
---|
| 3976 |
|
---|
| 3977 | #undef WinSwitchToProgram
|
---|
| 3978 | #define WinSwitchToProgram _WinSwitchToProgram
|
---|
| 3979 |
|
---|
| 3980 | #endif
|
---|
| 3981 | #ifdef INCL_WINSHELLDATA
|
---|
| 3982 | BOOL APIENTRY _PrfCloseProfile(HINI a);
|
---|
| 3983 |
|
---|
| 3984 | #undef PrfCloseProfile
|
---|
| 3985 | #define PrfCloseProfile _PrfCloseProfile
|
---|
| 3986 |
|
---|
| 3987 | HINI APIENTRY _PrfOpenProfile(HAB a, PCSZ b);
|
---|
| 3988 |
|
---|
| 3989 | #undef PrfOpenProfile
|
---|
| 3990 | #define PrfOpenProfile _PrfOpenProfile
|
---|
| 3991 |
|
---|
| 3992 | BOOL APIENTRY _PrfQueryProfile(HAB a, PPRFPROFILE b);
|
---|
| 3993 |
|
---|
| 3994 | #undef PrfQueryProfile
|
---|
| 3995 | #define PrfQueryProfile _PrfQueryProfile
|
---|
| 3996 |
|
---|
| 3997 | BOOL APIENTRY _PrfQueryProfileData(HINI a, PCSZ b, PCSZ c, PVOID d, PULONG e);
|
---|
| 3998 |
|
---|
| 3999 | #undef PrfQueryProfileData
|
---|
| 4000 | #define PrfQueryProfileData _PrfQueryProfileData
|
---|
| 4001 |
|
---|
| 4002 | LONG APIENTRY _PrfQueryProfileInt(HINI a, PCSZ b, PCSZ c, LONG d);
|
---|
| 4003 |
|
---|
| 4004 | #undef PrfQueryProfileInt
|
---|
| 4005 | #define PrfQueryProfileInt _PrfQueryProfileInt
|
---|
| 4006 |
|
---|
| 4007 | BOOL APIENTRY _PrfQueryProfileSize(HINI a, PCSZ b, PCSZ c, PULONG d);
|
---|
| 4008 |
|
---|
| 4009 | #undef PrfQueryProfileSize
|
---|
| 4010 | #define PrfQueryProfileSize _PrfQueryProfileSize
|
---|
| 4011 |
|
---|
| 4012 | ULONG APIENTRY _PrfQueryProfileString(HINI a, PCSZ b, PCSZ c, PCSZ d, PVOID e, ULONG f);
|
---|
| 4013 |
|
---|
| 4014 | #undef PrfQueryProfileString
|
---|
| 4015 | #define PrfQueryProfileString _PrfQueryProfileString
|
---|
| 4016 |
|
---|
| 4017 | BOOL APIENTRY _PrfReset(HAB a, PPRFPROFILE b);
|
---|
| 4018 |
|
---|
| 4019 | #undef PrfReset
|
---|
| 4020 | #define PrfReset _PrfReset
|
---|
| 4021 |
|
---|
| 4022 | BOOL APIENTRY _PrfWriteProfileData(HINI a, PCSZ b, PCSZ c, PVOID d, ULONG e);
|
---|
| 4023 |
|
---|
| 4024 | #undef PrfWriteProfileData
|
---|
| 4025 | #define PrfWriteProfileData _PrfWriteProfileData
|
---|
| 4026 |
|
---|
| 4027 | BOOL APIENTRY _PrfWriteProfileString(HINI a, PCSZ b, PCSZ c, PCSZ d);
|
---|
| 4028 |
|
---|
| 4029 | #undef PrfWriteProfileString
|
---|
| 4030 | #define PrfWriteProfileString _PrfWriteProfileString
|
---|
| 4031 |
|
---|
| 4032 | #endif
|
---|
| 4033 | #ifdef INCL_WINSTDFILE
|
---|
| 4034 | MRESULT APIENTRY _WinDefFileDlgProc(HWND a, ULONG b, MPARAM c, MPARAM d);
|
---|
| 4035 |
|
---|
| 4036 | #undef WinDefFileDlgProc
|
---|
| 4037 | #define WinDefFileDlgProc _WinDefFileDlgProc
|
---|
| 4038 |
|
---|
| 4039 | HWND APIENTRY _WinFileDlg(HWND a, HWND b, PFILEDLG c);
|
---|
| 4040 |
|
---|
| 4041 | #undef WinFileDlg
|
---|
| 4042 | #define WinFileDlg _WinFileDlg
|
---|
| 4043 |
|
---|
| 4044 | BOOL APIENTRY _WinFreeFileDlgList(PAPSZ a);
|
---|
| 4045 |
|
---|
| 4046 | #undef WinFreeFileDlgList
|
---|
| 4047 | #define WinFreeFileDlgList _WinFreeFileDlgList
|
---|
| 4048 |
|
---|
| 4049 | #endif
|
---|
| 4050 | #ifdef INCL_WINSTDFONT
|
---|
| 4051 | HWND APIENTRY _WinFontDlg(HWND a, HWND b, PFONTDLG c);
|
---|
| 4052 |
|
---|
| 4053 | #undef WinFontDlg
|
---|
| 4054 | #define WinFontDlg _WinFontDlg
|
---|
| 4055 |
|
---|
| 4056 | MRESULT APIENTRY _WinDefFontDlgProc(HWND a, ULONG b, MPARAM c, MPARAM d);
|
---|
| 4057 |
|
---|
| 4058 | #undef WinDefFontDlgProc
|
---|
| 4059 | #define WinDefFontDlgProc _WinDefFontDlgProc
|
---|
| 4060 |
|
---|
| 4061 | #endif
|
---|
| 4062 | #ifdef INCL_WINSTDDRAG
|
---|
| 4063 | BOOL APIENTRY _DrgAcceptDroppedFiles(HWND a, PCSZ b, PCSZ c, ULONG d, ULONG e);
|
---|
| 4064 |
|
---|
| 4065 | #undef DrgAcceptDroppedFiles
|
---|
| 4066 | #define DrgAcceptDroppedFiles _DrgAcceptDroppedFiles
|
---|
| 4067 |
|
---|
| 4068 | BOOL APIENTRY _DrgAccessDraginfo(PDRAGINFO a);
|
---|
| 4069 |
|
---|
| 4070 | #undef DrgAccessDraginfo
|
---|
| 4071 | #define DrgAccessDraginfo _DrgAccessDraginfo
|
---|
| 4072 |
|
---|
| 4073 | HSTR APIENTRY _DrgAddStrHandle(PCSZ a);
|
---|
| 4074 |
|
---|
| 4075 | #undef DrgAddStrHandle
|
---|
| 4076 | #define DrgAddStrHandle _DrgAddStrHandle
|
---|
| 4077 |
|
---|
| 4078 | PDRAGINFO APIENTRY _DrgAllocDraginfo(ULONG a);
|
---|
| 4079 |
|
---|
| 4080 | #undef DrgAllocDraginfo
|
---|
| 4081 | #define DrgAllocDraginfo _DrgAllocDraginfo
|
---|
| 4082 |
|
---|
| 4083 | PDRAGTRANSFER APIENTRY _DrgAllocDragtransfer(ULONG a);
|
---|
| 4084 |
|
---|
| 4085 | #undef DrgAllocDragtransfer
|
---|
| 4086 | #define DrgAllocDragtransfer _DrgAllocDragtransfer
|
---|
| 4087 |
|
---|
| 4088 | BOOL APIENTRY _DrgCancelLazyDrag();
|
---|
| 4089 |
|
---|
| 4090 | #undef DrgCancelLazyDrag
|
---|
| 4091 | #define DrgCancelLazyDrag _DrgCancelLazyDrag
|
---|
| 4092 |
|
---|
| 4093 | BOOL APIENTRY _DrgDeleteDraginfoStrHandles(PDRAGINFO a);
|
---|
| 4094 |
|
---|
| 4095 | #undef DrgDeleteDraginfoStrHandles
|
---|
| 4096 | #define DrgDeleteDraginfoStrHandles _DrgDeleteDraginfoStrHandles
|
---|
| 4097 |
|
---|
| 4098 | BOOL APIENTRY _DrgDeleteStrHandle(HSTR a);
|
---|
| 4099 |
|
---|
| 4100 | #undef DrgDeleteStrHandle
|
---|
| 4101 | #define DrgDeleteStrHandle _DrgDeleteStrHandle
|
---|
| 4102 |
|
---|
| 4103 | HWND APIENTRY _DrgDrag(HWND a, PDRAGINFO b, PDRAGIMAGE c, ULONG d, LONG e, PVOID f);
|
---|
| 4104 |
|
---|
| 4105 | #undef DrgDrag
|
---|
| 4106 | #define DrgDrag _DrgDrag
|
---|
| 4107 |
|
---|
| 4108 | BOOL APIENTRY _DrgDragFiles(HWND a, PCSZ *b, PCSZ *c, PCSZ *d, ULONG e, HPOINTER f, ULONG g, BOOL h, ULONG i);
|
---|
| 4109 |
|
---|
| 4110 | #undef DrgDragFiles
|
---|
| 4111 | #define DrgDragFiles _DrgDragFiles
|
---|
| 4112 |
|
---|
| 4113 | BOOL APIENTRY _DrgFreeDraginfo(PDRAGINFO a);
|
---|
| 4114 |
|
---|
| 4115 | #undef DrgFreeDraginfo
|
---|
| 4116 | #define DrgFreeDraginfo _DrgFreeDraginfo
|
---|
| 4117 |
|
---|
| 4118 | BOOL APIENTRY _DrgFreeDragtransfer(PDRAGTRANSFER a);
|
---|
| 4119 |
|
---|
| 4120 | #undef DrgFreeDragtransfer
|
---|
| 4121 | #define DrgFreeDragtransfer _DrgFreeDragtransfer
|
---|
| 4122 |
|
---|
| 4123 | HPS APIENTRY _DrgGetPS(HWND a);
|
---|
| 4124 |
|
---|
| 4125 | #undef DrgGetPS
|
---|
| 4126 | #define DrgGetPS _DrgGetPS
|
---|
| 4127 |
|
---|
| 4128 | BOOL APIENTRY _DrgLazyDrag(HWND a, PDRAGINFO b, PDRAGIMAGE c, ULONG d, PVOID e);
|
---|
| 4129 |
|
---|
| 4130 | #undef DrgLazyDrag
|
---|
| 4131 | #define DrgLazyDrag _DrgLazyDrag
|
---|
| 4132 |
|
---|
| 4133 | BOOL APIENTRY _DrgLazyDrop(HWND a, ULONG b, PPOINTL c);
|
---|
| 4134 |
|
---|
| 4135 | #undef DrgLazyDrop
|
---|
| 4136 | #define DrgLazyDrop _DrgLazyDrop
|
---|
| 4137 |
|
---|
| 4138 | BOOL APIENTRY _DrgPostTransferMsg(HWND a, ULONG b, PDRAGTRANSFER c, ULONG d, ULONG e, BOOL f);
|
---|
| 4139 |
|
---|
| 4140 | #undef DrgPostTransferMsg
|
---|
| 4141 | #define DrgPostTransferMsg _DrgPostTransferMsg
|
---|
| 4142 |
|
---|
| 4143 | BOOL APIENTRY _DrgPushDraginfo(PDRAGINFO a, HWND b);
|
---|
| 4144 |
|
---|
| 4145 | #undef DrgPushDraginfo
|
---|
| 4146 | #define DrgPushDraginfo _DrgPushDraginfo
|
---|
| 4147 |
|
---|
| 4148 | PDRAGINFO APIENTRY _DrgQueryDraginfoPtr(PDRAGINFO a);
|
---|
| 4149 |
|
---|
| 4150 | #undef DrgQueryDraginfoPtr
|
---|
| 4151 | #define DrgQueryDraginfoPtr _DrgQueryDraginfoPtr
|
---|
| 4152 |
|
---|
| 4153 | PDRAGINFO APIENTRY _DrgQueryDraginfoPtrFromHwnd(HWND a);
|
---|
| 4154 |
|
---|
| 4155 | #undef DrgQueryDraginfoPtrFromHwnd
|
---|
| 4156 | #define DrgQueryDraginfoPtrFromHwnd _DrgQueryDraginfoPtrFromHwnd
|
---|
| 4157 |
|
---|
| 4158 | PDRAGINFO APIENTRY _DrgQueryDraginfoPtrFromDragitem(PDRAGITEM a);
|
---|
| 4159 |
|
---|
| 4160 | #undef DrgQueryDraginfoPtrFromDragitem
|
---|
| 4161 | #define DrgQueryDraginfoPtrFromDragitem _DrgQueryDraginfoPtrFromDragitem
|
---|
| 4162 |
|
---|
| 4163 | BOOL APIENTRY _DrgQueryDragitem(PDRAGINFO a, ULONG b, PDRAGITEM c, ULONG d);
|
---|
| 4164 |
|
---|
| 4165 | #undef DrgQueryDragitem
|
---|
| 4166 | #define DrgQueryDragitem _DrgQueryDragitem
|
---|
| 4167 |
|
---|
| 4168 | ULONG APIENTRY _DrgQueryDragitemCount(PDRAGINFO a);
|
---|
| 4169 |
|
---|
| 4170 | #undef DrgQueryDragitemCount
|
---|
| 4171 | #define DrgQueryDragitemCount _DrgQueryDragitemCount
|
---|
| 4172 |
|
---|
| 4173 | PDRAGITEM APIENTRY _DrgQueryDragitemPtr(PDRAGINFO a, ULONG b);
|
---|
| 4174 |
|
---|
| 4175 | #undef DrgQueryDragitemPtr
|
---|
| 4176 | #define DrgQueryDragitemPtr _DrgQueryDragitemPtr
|
---|
| 4177 |
|
---|
| 4178 | ULONG APIENTRY _DrgQueryDragStatus();
|
---|
| 4179 |
|
---|
| 4180 | #undef DrgQueryDragStatus
|
---|
| 4181 | #define DrgQueryDragStatus _DrgQueryDragStatus
|
---|
| 4182 |
|
---|
| 4183 | BOOL APIENTRY _DrgQueryNativeRMF(PDRAGITEM a, ULONG b, PCHAR c);
|
---|
| 4184 |
|
---|
| 4185 | #undef DrgQueryNativeRMF
|
---|
| 4186 | #define DrgQueryNativeRMF _DrgQueryNativeRMF
|
---|
| 4187 |
|
---|
| 4188 | ULONG APIENTRY _DrgQueryNativeRMFLen(PDRAGITEM a);
|
---|
| 4189 |
|
---|
| 4190 | #undef DrgQueryNativeRMFLen
|
---|
| 4191 | #define DrgQueryNativeRMFLen _DrgQueryNativeRMFLen
|
---|
| 4192 |
|
---|
| 4193 | ULONG APIENTRY _DrgQueryStrName(HSTR a, ULONG b, PSZ c);
|
---|
| 4194 |
|
---|
| 4195 | #undef DrgQueryStrName
|
---|
| 4196 | #define DrgQueryStrName _DrgQueryStrName
|
---|
| 4197 |
|
---|
| 4198 | ULONG APIENTRY _DrgQueryStrNameLen(HSTR a);
|
---|
| 4199 |
|
---|
| 4200 | #undef DrgQueryStrNameLen
|
---|
| 4201 | #define DrgQueryStrNameLen _DrgQueryStrNameLen
|
---|
| 4202 |
|
---|
| 4203 | BOOL APIENTRY _DrgQueryTrueType(PDRAGITEM a, ULONG b, PSZ c);
|
---|
| 4204 |
|
---|
| 4205 | #undef DrgQueryTrueType
|
---|
| 4206 | #define DrgQueryTrueType _DrgQueryTrueType
|
---|
| 4207 |
|
---|
| 4208 | ULONG APIENTRY _DrgQueryTrueTypeLen(PDRAGITEM a);
|
---|
| 4209 |
|
---|
| 4210 | #undef DrgQueryTrueTypeLen
|
---|
| 4211 | #define DrgQueryTrueTypeLen _DrgQueryTrueTypeLen
|
---|
| 4212 |
|
---|
| 4213 | PDRAGINFO APIENTRY _DrgReallocDraginfo(PDRAGINFO a, ULONG b);
|
---|
| 4214 |
|
---|
| 4215 | #undef DrgReallocDraginfo
|
---|
| 4216 | #define DrgReallocDraginfo _DrgReallocDraginfo
|
---|
| 4217 |
|
---|
| 4218 | BOOL APIENTRY _DrgReleasePS(HPS a);
|
---|
| 4219 |
|
---|
| 4220 | #undef DrgReleasePS
|
---|
| 4221 | #define DrgReleasePS _DrgReleasePS
|
---|
| 4222 |
|
---|
| 4223 | MRESULT APIENTRY _DrgSendTransferMsg(HWND a, ULONG b, MPARAM c, MPARAM d);
|
---|
| 4224 |
|
---|
| 4225 | #undef DrgSendTransferMsg
|
---|
| 4226 | #define DrgSendTransferMsg _DrgSendTransferMsg
|
---|
| 4227 |
|
---|
| 4228 | BOOL APIENTRY _DrgSetDragImage(PDRAGINFO a, PDRAGIMAGE b, ULONG c, PVOID d);
|
---|
| 4229 |
|
---|
| 4230 | #undef DrgSetDragImage
|
---|
| 4231 | #define DrgSetDragImage _DrgSetDragImage
|
---|
| 4232 |
|
---|
| 4233 | BOOL APIENTRY _DrgSetDragitem(PDRAGINFO a, PDRAGITEM b, ULONG c, ULONG d);
|
---|
| 4234 |
|
---|
| 4235 | #undef DrgSetDragitem
|
---|
| 4236 | #define DrgSetDragitem _DrgSetDragitem
|
---|
| 4237 |
|
---|
| 4238 | BOOL APIENTRY _DrgSetDragPointer(PDRAGINFO a, HPOINTER b);
|
---|
| 4239 |
|
---|
| 4240 | #undef DrgSetDragPointer
|
---|
| 4241 | #define DrgSetDragPointer _DrgSetDragPointer
|
---|
| 4242 |
|
---|
| 4243 | BOOL APIENTRY _DrgVerifyNativeRMF(PDRAGITEM a, PCSZ b);
|
---|
| 4244 |
|
---|
| 4245 | #undef DrgVerifyNativeRMF
|
---|
| 4246 | #define DrgVerifyNativeRMF _DrgVerifyNativeRMF
|
---|
| 4247 |
|
---|
| 4248 | BOOL APIENTRY _DrgVerifyRMF(PDRAGITEM a, PCSZ b, PCSZ c);
|
---|
| 4249 |
|
---|
| 4250 | #undef DrgVerifyRMF
|
---|
| 4251 | #define DrgVerifyRMF _DrgVerifyRMF
|
---|
| 4252 |
|
---|
| 4253 | BOOL APIENTRY _DrgVerifyTrueType(PDRAGITEM a, PCSZ b);
|
---|
| 4254 |
|
---|
| 4255 | #undef DrgVerifyTrueType
|
---|
| 4256 | #define DrgVerifyTrueType _DrgVerifyTrueType
|
---|
| 4257 |
|
---|
| 4258 | BOOL APIENTRY _DrgVerifyType(PDRAGITEM a, PCSZ b);
|
---|
| 4259 |
|
---|
| 4260 | #undef DrgVerifyType
|
---|
| 4261 | #define DrgVerifyType _DrgVerifyType
|
---|
| 4262 |
|
---|
| 4263 | BOOL APIENTRY _DrgVerifyTypeSet(PDRAGITEM a, PCSZ b, ULONG c, PSZ d);
|
---|
| 4264 |
|
---|
| 4265 | #undef DrgVerifyTypeSet
|
---|
| 4266 | #define DrgVerifyTypeSet _DrgVerifyTypeSet
|
---|
| 4267 |
|
---|
| 4268 | #endif
|
---|
| 4269 | #ifdef INCL_WPCLASS
|
---|
| 4270 | HOBJECT APIENTRY _WinCopyObject(HOBJECT a, HOBJECT b, ULONG c);
|
---|
| 4271 |
|
---|
| 4272 | #undef WinCopyObject
|
---|
| 4273 | #define WinCopyObject _WinCopyObject
|
---|
| 4274 |
|
---|
| 4275 | HOBJECT APIENTRY _WinCreateObject(PCSZ a, PCSZ b, PCSZ c, PCSZ d, ULONG e);
|
---|
| 4276 |
|
---|
| 4277 | #undef WinCreateObject
|
---|
| 4278 | #define WinCreateObject _WinCreateObject
|
---|
| 4279 |
|
---|
| 4280 | HOBJECT APIENTRY _WinCreateShadow(HOBJECT a, HOBJECT b, ULONG c);
|
---|
| 4281 |
|
---|
| 4282 | #undef WinCreateShadow
|
---|
| 4283 | #define WinCreateShadow _WinCreateShadow
|
---|
| 4284 |
|
---|
| 4285 | BOOL APIENTRY _WinDeregisterObjectClass(PCSZ a);
|
---|
| 4286 |
|
---|
| 4287 | #undef WinDeregisterObjectClass
|
---|
| 4288 | #define WinDeregisterObjectClass _WinDeregisterObjectClass
|
---|
| 4289 |
|
---|
| 4290 | BOOL APIENTRY _WinDestroyObject(HOBJECT a);
|
---|
| 4291 |
|
---|
| 4292 | #undef WinDestroyObject
|
---|
| 4293 | #define WinDestroyObject _WinDestroyObject
|
---|
| 4294 |
|
---|
| 4295 | BOOL APIENTRY _WinEnumObjectClasses(POBJCLASS a, PULONG b);
|
---|
| 4296 |
|
---|
| 4297 | #undef WinEnumObjectClasses
|
---|
| 4298 | #define WinEnumObjectClasses _WinEnumObjectClasses
|
---|
| 4299 |
|
---|
| 4300 | BOOL APIENTRY _WinIsSOMDDReady();
|
---|
| 4301 |
|
---|
| 4302 | #undef WinIsSOMDDReady
|
---|
| 4303 | #define WinIsSOMDDReady _WinIsSOMDDReady
|
---|
| 4304 |
|
---|
| 4305 | BOOL APIENTRY _WinIsWPDServerReady();
|
---|
| 4306 |
|
---|
| 4307 | #undef WinIsWPDServerReady
|
---|
| 4308 | #define WinIsWPDServerReady _WinIsWPDServerReady
|
---|
| 4309 |
|
---|
| 4310 | HOBJECT APIENTRY _WinMoveObject(HOBJECT a, HOBJECT b, ULONG c);
|
---|
| 4311 |
|
---|
| 4312 | #undef WinMoveObject
|
---|
| 4313 | #define WinMoveObject _WinMoveObject
|
---|
| 4314 |
|
---|
| 4315 | BOOL APIENTRY _WinOpenObject(HOBJECT a, ULONG b, BOOL c);
|
---|
| 4316 |
|
---|
| 4317 | #undef WinOpenObject
|
---|
| 4318 | #define WinOpenObject _WinOpenObject
|
---|
| 4319 |
|
---|
| 4320 | BOOL APIENTRY _WinQueryActiveDesktopPathname(PSZ a, ULONG b);
|
---|
| 4321 |
|
---|
| 4322 | #undef WinQueryActiveDesktopPathname
|
---|
| 4323 | #define WinQueryActiveDesktopPathname _WinQueryActiveDesktopPathname
|
---|
| 4324 |
|
---|
| 4325 | HOBJECT APIENTRY _WinQueryObject(PCSZ a);
|
---|
| 4326 |
|
---|
| 4327 | #undef WinQueryObject
|
---|
| 4328 | #define WinQueryObject _WinQueryObject
|
---|
| 4329 |
|
---|
| 4330 | BOOL APIENTRY _WinQueryObjectPath(HOBJECT a, PSZ b, ULONG c);
|
---|
| 4331 |
|
---|
| 4332 | #undef WinQueryObjectPath
|
---|
| 4333 | #define WinQueryObjectPath _WinQueryObjectPath
|
---|
| 4334 |
|
---|
| 4335 | BOOL APIENTRY _WinRegisterObjectClass(PCSZ a, PCSZ b);
|
---|
| 4336 |
|
---|
| 4337 | #undef WinRegisterObjectClass
|
---|
| 4338 | #define WinRegisterObjectClass _WinRegisterObjectClass
|
---|
| 4339 |
|
---|
| 4340 | BOOL APIENTRY _WinReplaceObjectClass(PCSZ a, PCSZ b, BOOL c);
|
---|
| 4341 |
|
---|
| 4342 | #undef WinReplaceObjectClass
|
---|
| 4343 | #define WinReplaceObjectClass _WinReplaceObjectClass
|
---|
| 4344 |
|
---|
| 4345 | ULONG APIENTRY _WinRestartSOMDD(BOOL a);
|
---|
| 4346 |
|
---|
| 4347 | #undef WinRestartSOMDD
|
---|
| 4348 | #define WinRestartSOMDD _WinRestartSOMDD
|
---|
| 4349 |
|
---|
| 4350 | ULONG APIENTRY _WinRestartWPDServer(BOOL a);
|
---|
| 4351 |
|
---|
| 4352 | #undef WinRestartWPDServer
|
---|
| 4353 | #define WinRestartWPDServer _WinRestartWPDServer
|
---|
| 4354 |
|
---|
| 4355 | BOOL APIENTRY _WinSaveObject(HOBJECT a, BOOL b);
|
---|
| 4356 |
|
---|
| 4357 | #undef WinSaveObject
|
---|
| 4358 | #define WinSaveObject _WinSaveObject
|
---|
| 4359 |
|
---|
| 4360 | BOOL APIENTRY _WinSetObjectData(HOBJECT a, PCSZ b);
|
---|
| 4361 |
|
---|
| 4362 | #undef WinSetObjectData
|
---|
| 4363 | #define WinSetObjectData _WinSetObjectData
|
---|
| 4364 |
|
---|
| 4365 | BOOL APIENTRY _WinFreeFileIcon(HPOINTER a);
|
---|
| 4366 |
|
---|
| 4367 | #undef WinFreeFileIcon
|
---|
| 4368 | #define WinFreeFileIcon _WinFreeFileIcon
|
---|
| 4369 |
|
---|
| 4370 | HPOINTER APIENTRY _WinLoadFileIcon(PCSZ a, BOOL b);
|
---|
| 4371 |
|
---|
| 4372 | #undef WinLoadFileIcon
|
---|
| 4373 | #define WinLoadFileIcon _WinLoadFileIcon
|
---|
| 4374 |
|
---|
| 4375 | BOOL APIENTRY _WinRestoreWindowPos(PCSZ a, PCSZ b, HWND c);
|
---|
| 4376 |
|
---|
| 4377 | #undef WinRestoreWindowPos
|
---|
| 4378 | #define WinRestoreWindowPos _WinRestoreWindowPos
|
---|
| 4379 |
|
---|
| 4380 | BOOL APIENTRY _WinSetFileIcon(PCSZ a, PICONINFO b);
|
---|
| 4381 |
|
---|
| 4382 | #undef WinSetFileIcon
|
---|
| 4383 | #define WinSetFileIcon _WinSetFileIcon
|
---|
| 4384 |
|
---|
| 4385 | BOOL APIENTRY _WinShutdownSystem(HAB a, HMQ b);
|
---|
| 4386 |
|
---|
| 4387 | #undef WinShutdownSystem
|
---|
| 4388 | #define WinShutdownSystem _WinShutdownSystem
|
---|
| 4389 |
|
---|
| 4390 | BOOL APIENTRY _WinStoreWindowPos(PCSZ a, PCSZ b, HWND c);
|
---|
| 4391 |
|
---|
| 4392 | #undef WinStoreWindowPos
|
---|
| 4393 | #define WinStoreWindowPos _WinStoreWindowPos
|
---|
| 4394 |
|
---|
| 4395 | #endif
|
---|
| 4396 | #ifdef INCL_SPL
|
---|
| 4397 | BOOL APIENTRY _SplStdClose(HDC a);
|
---|
| 4398 |
|
---|
| 4399 | #undef SplStdClose
|
---|
| 4400 | #define SplStdClose _SplStdClose
|
---|
| 4401 |
|
---|
| 4402 | BOOL APIENTRY _SplStdDelete(HSTD a);
|
---|
| 4403 |
|
---|
| 4404 | #undef SplStdDelete
|
---|
| 4405 | #define SplStdDelete _SplStdDelete
|
---|
| 4406 |
|
---|
| 4407 | BOOL APIENTRY _SplStdGetBits(HSTD a, LONG b, LONG c, PCH d);
|
---|
| 4408 |
|
---|
| 4409 | #undef SplStdGetBits
|
---|
| 4410 | #define SplStdGetBits _SplStdGetBits
|
---|
| 4411 |
|
---|
| 4412 | BOOL APIENTRY _SplStdOpen(HDC a);
|
---|
| 4413 |
|
---|
| 4414 | #undef SplStdOpen
|
---|
| 4415 | #define SplStdOpen _SplStdOpen
|
---|
| 4416 |
|
---|
| 4417 | LONG APIENTRY _SplStdQueryLength(HSTD a);
|
---|
| 4418 |
|
---|
| 4419 | #undef SplStdQueryLength
|
---|
| 4420 | #define SplStdQueryLength _SplStdQueryLength
|
---|
| 4421 |
|
---|
| 4422 | BOOL APIENTRY _SplStdStart(HDC a);
|
---|
| 4423 |
|
---|
| 4424 | #undef SplStdStart
|
---|
| 4425 | #define SplStdStart _SplStdStart
|
---|
| 4426 |
|
---|
| 4427 | HSTD APIENTRY _SplStdStop(HDC a);
|
---|
| 4428 |
|
---|
| 4429 | #undef SplStdStop
|
---|
| 4430 | #define SplStdStop _SplStdStop
|
---|
| 4431 |
|
---|
| 4432 | SPLERR APIENTRY _SplControlDevice(PSZ a, PSZ b, ULONG c);
|
---|
| 4433 |
|
---|
| 4434 | #undef SplControlDevice
|
---|
| 4435 | #define SplControlDevice _SplControlDevice
|
---|
| 4436 |
|
---|
| 4437 | SPLERR APIENTRY _SplCopyJob(PCSZ a, PCSZ b, ULONG c, PCSZ d, PCSZ e, PULONG f);
|
---|
| 4438 |
|
---|
| 4439 | #undef SplCopyJob
|
---|
| 4440 | #define SplCopyJob _SplCopyJob
|
---|
| 4441 |
|
---|
| 4442 | SPLERR APIENTRY _SplCreateDevice(PSZ a, ULONG b, PVOID c, ULONG d);
|
---|
| 4443 |
|
---|
| 4444 | #undef SplCreateDevice
|
---|
| 4445 | #define SplCreateDevice _SplCreateDevice
|
---|
| 4446 |
|
---|
| 4447 | SPLERR APIENTRY _SplCreatePort(PCSZ a, PCSZ b, PCSZ c, ULONG d, PVOID e, ULONG f);
|
---|
| 4448 |
|
---|
| 4449 | #undef SplCreatePort
|
---|
| 4450 | #define SplCreatePort _SplCreatePort
|
---|
| 4451 |
|
---|
| 4452 | SPLERR APIENTRY _SplCreateQueue(PSZ a, ULONG b, PVOID c, ULONG d);
|
---|
| 4453 |
|
---|
| 4454 | #undef SplCreateQueue
|
---|
| 4455 | #define SplCreateQueue _SplCreateQueue
|
---|
| 4456 |
|
---|
| 4457 | SPLERR APIENTRY _SplDeleteDevice(PSZ a, PSZ b);
|
---|
| 4458 |
|
---|
| 4459 | #undef SplDeleteDevice
|
---|
| 4460 | #define SplDeleteDevice _SplDeleteDevice
|
---|
| 4461 |
|
---|
| 4462 | SPLERR APIENTRY _SplDeleteJob(PSZ a, PSZ b, ULONG c);
|
---|
| 4463 |
|
---|
| 4464 | #undef SplDeleteJob
|
---|
| 4465 | #define SplDeleteJob _SplDeleteJob
|
---|
| 4466 |
|
---|
| 4467 | SPLERR APIENTRY _SplDeletePort(PCSZ a, PCSZ b);
|
---|
| 4468 |
|
---|
| 4469 | #undef SplDeletePort
|
---|
| 4470 | #define SplDeletePort _SplDeletePort
|
---|
| 4471 |
|
---|
| 4472 | SPLERR APIENTRY _SplDeleteQueue(PSZ a, PSZ b);
|
---|
| 4473 |
|
---|
| 4474 | #undef SplDeleteQueue
|
---|
| 4475 | #define SplDeleteQueue _SplDeleteQueue
|
---|
| 4476 |
|
---|
| 4477 | SPLERR APIENTRY _SplEnumDevice(PSZ a, ULONG b, PVOID c, ULONG d, PULONG e, PULONG f, PULONG g, PVOID h);
|
---|
| 4478 |
|
---|
| 4479 | #undef SplEnumDevice
|
---|
| 4480 | #define SplEnumDevice _SplEnumDevice
|
---|
| 4481 |
|
---|
| 4482 | SPLERR APIENTRY _SplEnumDriver(PSZ a, ULONG b, PVOID c, ULONG d, PULONG e, PULONG f, PULONG g, PVOID h);
|
---|
| 4483 |
|
---|
| 4484 | #undef SplEnumDriver
|
---|
| 4485 | #define SplEnumDriver _SplEnumDriver
|
---|
| 4486 |
|
---|
| 4487 | SPLERR APIENTRY _SplEnumJob(PSZ a, PSZ b, ULONG c, PVOID d, ULONG e, PULONG f, PULONG g, PULONG h, PVOID i);
|
---|
| 4488 |
|
---|
| 4489 | #undef SplEnumJob
|
---|
| 4490 | #define SplEnumJob _SplEnumJob
|
---|
| 4491 |
|
---|
| 4492 | SPLERR APIENTRY _SplEnumPort(PCSZ a, ULONG b, PVOID c, ULONG d, PULONG e, PULONG f, PULONG g, PVOID h);
|
---|
| 4493 |
|
---|
| 4494 | #undef SplEnumPort
|
---|
| 4495 | #define SplEnumPort _SplEnumPort
|
---|
| 4496 |
|
---|
| 4497 | SPLERR APIENTRY _SplEnumPrinter(PSZ a, ULONG b, ULONG c, PVOID d, ULONG e, PULONG f, PULONG g, PULONG h, PVOID i);
|
---|
| 4498 |
|
---|
| 4499 | #undef SplEnumPrinter
|
---|
| 4500 | #define SplEnumPrinter _SplEnumPrinter
|
---|
| 4501 |
|
---|
| 4502 | SPLERR APIENTRY _SplEnumQueue(PSZ a, ULONG b, PVOID c, ULONG d, PULONG e, PULONG f, PULONG g, PVOID h);
|
---|
| 4503 |
|
---|
| 4504 | #undef SplEnumQueue
|
---|
| 4505 | #define SplEnumQueue _SplEnumQueue
|
---|
| 4506 |
|
---|
| 4507 | SPLERR APIENTRY _SplEnumQueueProcessor(PSZ a, ULONG b, PVOID c, ULONG d, PULONG e, PULONG f, PULONG g, PVOID h);
|
---|
| 4508 |
|
---|
| 4509 | #undef SplEnumQueueProcessor
|
---|
| 4510 | #define SplEnumQueueProcessor _SplEnumQueueProcessor
|
---|
| 4511 |
|
---|
| 4512 | SPLERR APIENTRY _SplHoldJob(PCSZ a, PCSZ b, ULONG c);
|
---|
| 4513 |
|
---|
| 4514 | #undef SplHoldJob
|
---|
| 4515 | #define SplHoldJob _SplHoldJob
|
---|
| 4516 |
|
---|
| 4517 | SPLERR APIENTRY _SplHoldQueue(PSZ a, PSZ b);
|
---|
| 4518 |
|
---|
| 4519 | #undef SplHoldQueue
|
---|
| 4520 | #define SplHoldQueue _SplHoldQueue
|
---|
| 4521 |
|
---|
| 4522 | SPLERR APIENTRY _SplPurgeQueue(PSZ a, PSZ b);
|
---|
| 4523 |
|
---|
| 4524 | #undef SplPurgeQueue
|
---|
| 4525 | #define SplPurgeQueue _SplPurgeQueue
|
---|
| 4526 |
|
---|
| 4527 | SPLERR APIENTRY _SplQueryDevice(PSZ a, PSZ b, ULONG c, PVOID d, ULONG e, PULONG f);
|
---|
| 4528 |
|
---|
| 4529 | #undef SplQueryDevice
|
---|
| 4530 | #define SplQueryDevice _SplQueryDevice
|
---|
| 4531 |
|
---|
| 4532 | SPLERR APIENTRY _SplQueryDriver(PCSZ a, PCSZ b, PCSZ c, ULONG d, PVOID e, ULONG f, PULONG g);
|
---|
| 4533 |
|
---|
| 4534 | #undef SplQueryDriver
|
---|
| 4535 | #define SplQueryDriver _SplQueryDriver
|
---|
| 4536 |
|
---|
| 4537 | SPLERR APIENTRY _SplQueryJob(PSZ a, PSZ b, ULONG c, ULONG d, PVOID e, ULONG f, PULONG g);
|
---|
| 4538 |
|
---|
| 4539 | #undef SplQueryJob
|
---|
| 4540 | #define SplQueryJob _SplQueryJob
|
---|
| 4541 |
|
---|
| 4542 | SPLERR APIENTRY _SplQueryPort(PCSZ a, PCSZ b, ULONG c, PVOID d, ULONG e, PULONG f);
|
---|
| 4543 |
|
---|
| 4544 | #undef SplQueryPort
|
---|
| 4545 | #define SplQueryPort _SplQueryPort
|
---|
| 4546 |
|
---|
| 4547 | SPLERR APIENTRY _SplQueryQueue(PSZ a, PSZ b, ULONG c, PVOID d, ULONG e, PULONG f);
|
---|
| 4548 |
|
---|
| 4549 | #undef SplQueryQueue
|
---|
| 4550 | #define SplQueryQueue _SplQueryQueue
|
---|
| 4551 |
|
---|
| 4552 | SPLERR APIENTRY _SplReleaseJob(PCSZ a, PCSZ b, ULONG c);
|
---|
| 4553 |
|
---|
| 4554 | #undef SplReleaseJob
|
---|
| 4555 | #define SplReleaseJob _SplReleaseJob
|
---|
| 4556 |
|
---|
| 4557 | SPLERR APIENTRY _SplReleaseQueue(PSZ a, PSZ b);
|
---|
| 4558 |
|
---|
| 4559 | #undef SplReleaseQueue
|
---|
| 4560 | #define SplReleaseQueue _SplReleaseQueue
|
---|
| 4561 |
|
---|
| 4562 | SPLERR APIENTRY _SplSetDevice(PSZ a, PSZ b, ULONG c, PVOID d, ULONG e, ULONG f);
|
---|
| 4563 |
|
---|
| 4564 | #undef SplSetDevice
|
---|
| 4565 | #define SplSetDevice _SplSetDevice
|
---|
| 4566 |
|
---|
| 4567 | SPLERR APIENTRY _SplSetDriver(PCSZ a, PCSZ b, PCSZ c, ULONG d, PVOID e, ULONG f, ULONG g);
|
---|
| 4568 |
|
---|
| 4569 | #undef SplSetDriver
|
---|
| 4570 | #define SplSetDriver _SplSetDriver
|
---|
| 4571 |
|
---|
| 4572 | SPLERR APIENTRY _SplSetJob(PSZ a, PSZ b, ULONG c, ULONG d, PVOID e, ULONG f, ULONG g);
|
---|
| 4573 |
|
---|
| 4574 | #undef SplSetJob
|
---|
| 4575 | #define SplSetJob _SplSetJob
|
---|
| 4576 |
|
---|
| 4577 | SPLERR APIENTRY _SplSetPort(PCSZ a, PCSZ b, ULONG c, PVOID d, ULONG e, ULONG f);
|
---|
| 4578 |
|
---|
| 4579 | #undef SplSetPort
|
---|
| 4580 | #define SplSetPort _SplSetPort
|
---|
| 4581 |
|
---|
| 4582 | SPLERR APIENTRY _SplSetQueue(PSZ a, PSZ b, ULONG c, PVOID d, ULONG e, ULONG f);
|
---|
| 4583 |
|
---|
| 4584 | #undef SplSetQueue
|
---|
| 4585 | #define SplSetQueue _SplSetQueue
|
---|
| 4586 |
|
---|
| 4587 | ULONG APIENTRY _SplMessageBox(PSZ a, ULONG b, ULONG c, PSZ d, PSZ e, ULONG f, ULONG g);
|
---|
| 4588 |
|
---|
| 4589 | #undef SplMessageBox
|
---|
| 4590 | #define SplMessageBox _SplMessageBox
|
---|
| 4591 |
|
---|
| 4592 | BOOL APIENTRY _SplQmAbort(HSPL a);
|
---|
| 4593 |
|
---|
| 4594 | #undef SplQmAbort
|
---|
| 4595 | #define SplQmAbort _SplQmAbort
|
---|
| 4596 |
|
---|
| 4597 | BOOL APIENTRY _SplQmAbortDoc(HSPL a);
|
---|
| 4598 |
|
---|
| 4599 | #undef SplQmAbortDoc
|
---|
| 4600 | #define SplQmAbortDoc _SplQmAbortDoc
|
---|
| 4601 |
|
---|
| 4602 | BOOL APIENTRY _SplQmClose(HSPL a);
|
---|
| 4603 |
|
---|
| 4604 | #undef SplQmClose
|
---|
| 4605 | #define SplQmClose _SplQmClose
|
---|
| 4606 |
|
---|
| 4607 | BOOL APIENTRY _SplQmEndDoc(HSPL a);
|
---|
| 4608 |
|
---|
| 4609 | #undef SplQmEndDoc
|
---|
| 4610 | #define SplQmEndDoc _SplQmEndDoc
|
---|
| 4611 |
|
---|
| 4612 | ULONG APIENTRY _SplQmGetJobID(HSPL a, ULONG b, PVOID c, ULONG d, PULONG e);
|
---|
| 4613 |
|
---|
| 4614 | #undef SplQmGetJobID
|
---|
| 4615 | #define SplQmGetJobID _SplQmGetJobID
|
---|
| 4616 |
|
---|
| 4617 | BOOL APIENTRY _SplQmNewPage(HSPL a, ULONG b);
|
---|
| 4618 |
|
---|
| 4619 | #undef SplQmNewPage
|
---|
| 4620 | #define SplQmNewPage _SplQmNewPage
|
---|
| 4621 |
|
---|
| 4622 | HSPL APIENTRY _SplQmOpen(PSZ a, LONG b, PQMOPENDATA c);
|
---|
| 4623 |
|
---|
| 4624 | #undef SplQmOpen
|
---|
| 4625 | #define SplQmOpen _SplQmOpen
|
---|
| 4626 |
|
---|
| 4627 | BOOL APIENTRY _SplQmStartDoc(HSPL a, PSZ b);
|
---|
| 4628 |
|
---|
| 4629 | #undef SplQmStartDoc
|
---|
| 4630 | #define SplQmStartDoc _SplQmStartDoc
|
---|
| 4631 |
|
---|
| 4632 | BOOL APIENTRY _SplQmWrite(HSPL a, LONG b, PVOID c);
|
---|
| 4633 |
|
---|
| 4634 | #undef SplQmWrite
|
---|
| 4635 | #define SplQmWrite _SplQmWrite
|
---|
| 4636 |
|
---|
| 4637 | #endif
|
---|
| 4638 | #ifdef INCL_WINHELP
|
---|
| 4639 | BOOL APIENTRY _WinAssociateHelpInstance(HWND a, HWND b);
|
---|
| 4640 |
|
---|
| 4641 | #undef WinAssociateHelpInstance
|
---|
| 4642 | #define WinAssociateHelpInstance _WinAssociateHelpInstance
|
---|
| 4643 |
|
---|
| 4644 | HWND APIENTRY _WinCreateHelpInstance(HAB a, PHELPINIT b);
|
---|
| 4645 |
|
---|
| 4646 | #undef WinCreateHelpInstance
|
---|
| 4647 | #define WinCreateHelpInstance _WinCreateHelpInstance
|
---|
| 4648 |
|
---|
| 4649 | BOOL APIENTRY _WinCreateHelpTable(HWND a, PHELPTABLE b);
|
---|
| 4650 |
|
---|
| 4651 | #undef WinCreateHelpTable
|
---|
| 4652 | #define WinCreateHelpTable _WinCreateHelpTable
|
---|
| 4653 |
|
---|
| 4654 | BOOL APIENTRY _WinDestroyHelpInstance(HWND a);
|
---|
| 4655 |
|
---|
| 4656 | #undef WinDestroyHelpInstance
|
---|
| 4657 | #define WinDestroyHelpInstance _WinDestroyHelpInstance
|
---|
| 4658 |
|
---|
| 4659 | BOOL APIENTRY _WinLoadHelpTable(HWND a, ULONG b, HMODULE c);
|
---|
| 4660 |
|
---|
| 4661 | #undef WinLoadHelpTable
|
---|
| 4662 | #define WinLoadHelpTable _WinLoadHelpTable
|
---|
| 4663 |
|
---|
| 4664 | HWND APIENTRY _WinQueryHelpInstance(HWND a);
|
---|
| 4665 |
|
---|
| 4666 | #undef WinQueryHelpInstance
|
---|
| 4667 | #define WinQueryHelpInstance _WinQueryHelpInstance
|
---|
| 4668 |
|
---|
| 4669 | #endif
|
---|
| 4670 | #ifdef INCL_DDF
|
---|
| 4671 | BOOL APIENTRY _DdfBeginList(HDDF a, ULONG b, ULONG c, ULONG d);
|
---|
| 4672 |
|
---|
| 4673 | #undef DdfBeginList
|
---|
| 4674 | #define DdfBeginList _DdfBeginList
|
---|
| 4675 |
|
---|
| 4676 | BOOL APIENTRY _DdfBitmap(HDDF a, HBITMAP b, ULONG c);
|
---|
| 4677 |
|
---|
| 4678 | #undef DdfBitmap
|
---|
| 4679 | #define DdfBitmap _DdfBitmap
|
---|
| 4680 |
|
---|
| 4681 | BOOL APIENTRY _DdfEndList(HDDF a);
|
---|
| 4682 |
|
---|
| 4683 | #undef DdfEndList
|
---|
| 4684 | #define DdfEndList _DdfEndList
|
---|
| 4685 |
|
---|
| 4686 | BOOL APIENTRY _DdfHyperText(HDDF a, PCSZ b, PCSZ c, ULONG d);
|
---|
| 4687 |
|
---|
| 4688 | #undef DdfHyperText
|
---|
| 4689 | #define DdfHyperText _DdfHyperText
|
---|
| 4690 |
|
---|
| 4691 | BOOL APIENTRY _DdfInform(HDDF a, PCSZ b, ULONG c);
|
---|
| 4692 |
|
---|
| 4693 | #undef DdfInform
|
---|
| 4694 | #define DdfInform _DdfInform
|
---|
| 4695 |
|
---|
| 4696 | HDDF APIENTRY _DdfInitialize(HWND a, ULONG b, ULONG c);
|
---|
| 4697 |
|
---|
| 4698 | #undef DdfInitialize
|
---|
| 4699 | #define DdfInitialize _DdfInitialize
|
---|
| 4700 |
|
---|
| 4701 | BOOL APIENTRY _DdfListItem(HDDF a, PCSZ b, PCSZ c);
|
---|
| 4702 |
|
---|
| 4703 | #undef DdfListItem
|
---|
| 4704 | #define DdfListItem _DdfListItem
|
---|
| 4705 |
|
---|
| 4706 | BOOL APIENTRY _DdfMetafile(HDDF a, HMF b, PRECTL c);
|
---|
| 4707 |
|
---|
| 4708 | #undef DdfMetafile
|
---|
| 4709 | #define DdfMetafile _DdfMetafile
|
---|
| 4710 |
|
---|
| 4711 | BOOL APIENTRY _DdfPara(HDDF a);
|
---|
| 4712 |
|
---|
| 4713 | #undef DdfPara
|
---|
| 4714 | #define DdfPara _DdfPara
|
---|
| 4715 |
|
---|
| 4716 | BOOL APIENTRY _DdfSetColor(HDDF a, COLOR b, COLOR c);
|
---|
| 4717 |
|
---|
| 4718 | #undef DdfSetColor
|
---|
| 4719 | #define DdfSetColor _DdfSetColor
|
---|
| 4720 |
|
---|
| 4721 | BOOL APIENTRY _DdfSetFont(HDDF a, PCSZ b, ULONG c, ULONG d);
|
---|
| 4722 |
|
---|
| 4723 | #undef DdfSetFont
|
---|
| 4724 | #define DdfSetFont _DdfSetFont
|
---|
| 4725 |
|
---|
| 4726 | BOOL APIENTRY _DdfSetFontStyle(HDDF a, ULONG b);
|
---|
| 4727 |
|
---|
| 4728 | #undef DdfSetFontStyle
|
---|
| 4729 | #define DdfSetFontStyle _DdfSetFontStyle
|
---|
| 4730 |
|
---|
| 4731 | BOOL APIENTRY _DdfSetFormat(HDDF a, ULONG b);
|
---|
| 4732 |
|
---|
| 4733 | #undef DdfSetFormat
|
---|
| 4734 | #define DdfSetFormat _DdfSetFormat
|
---|
| 4735 |
|
---|
| 4736 | BOOL APIENTRY _DdfSetTextAlign(HDDF a, ULONG b);
|
---|
| 4737 |
|
---|
| 4738 | #undef DdfSetTextAlign
|
---|
| 4739 | #define DdfSetTextAlign _DdfSetTextAlign
|
---|
| 4740 |
|
---|
| 4741 | BOOL APIENTRY _DdfText(HDDF a, PCSZ b);
|
---|
| 4742 |
|
---|
| 4743 | #undef DdfText
|
---|
| 4744 | #define DdfText _DdfText
|
---|
| 4745 |
|
---|
| 4746 | #endif
|
---|