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.

18 lines
281 B

  1. #ifndef __dll_h
  2. #define __dll_h
  3. #define T_HKEY 0x0001
  4. #define T_VALUE 0x0002
  5. #define T_DWORD 0x0003
  6. #define T_END 0xFFFF
  7. extern HINSTANCE g_hInstance;
  8. STDAPI_(void) DllAddRef(void);
  9. STDAPI_(void) DllRelease(void);
  10. #ifdef DEBUG
  11. void DllSetTraceMask(void);
  12. #endif
  13. #endif