Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
777 B

  1. ; Callback-type id's for GDI callbacks. All callback-type id's are
  2. ; 32-bits long and the upper 16-bits must be set to the module's
  3. ; Callback Client id.
  4. ;
  5. ; WARNING -- WARNING -- WARNING
  6. ;
  7. ; Win32c.dll uses the lower 16 bits of CBID's to index directly into
  8. ; the tables stored in GDI.EXE (gdicb16.asm) and GDI32.DLL (gdicb32.asm).
  9. ; Those tables *must* match these id's or callbacks will fail miserably.
  10. ; Do everyone a big favor and add new id's only at the end, and never
  11. ; change an existing id.
  12. ;
  13. CBID_LINEDDA equ (0 + (CBCID_GDI SHL 16))
  14. CBID_ENUMPEN equ (1 + (CBCID_GDI SHL 16))
  15. CBID_ENUMBRUSH equ (2 + (CBCID_GDI SHL 16))
  16. CBID_ABORTPROC equ (3 + (CBCID_GDI SHL 16))