Leaked source code of windows server 2003
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.

33 lines
1019 B

  1. //
  2. // delay.h
  3. //
  4. #ifndef DELAY_H
  5. #define DELAY_H
  6. // shell32
  7. BOOL WINAPI Internal_Shell_NotifyIconA(DWORD dwMessage, PNOTIFYICONDATA pnid);
  8. #define Shell_NotifyIconA Internal_Shell_NotifyIconA
  9. BOOL WINAPI Internal_Shell_NotifyIconW(DWORD dwMessage, PNOTIFYICONDATAW pnid);
  10. #define Shell_NotifyIconW Internal_Shell_NotifyIconW
  11. BOOL WINAPI Internal_Shell_SHAppBarMessage(DWORD dwMessage, PAPPBARDATA pabd);
  12. #define SHAppBarMessage Internal_Shell_SHAppBarMessage
  13. // ole32
  14. HRESULT STDAPICALLTYPE Internal_CoCreateInstance(REFCLSID rclsid, LPUNKNOWN punkOuter, DWORD dwClsContext, REFIID riid, LPVOID *ppv);
  15. #define CoCreateInstance Internal_CoCreateInstance
  16. HRESULT STDAPICALLTYPE Internal_CoInitialize(LPVOID pvReserved);
  17. #define CoInitialize Internal_CoInitialize
  18. HRESULT STDAPICALLTYPE Internal_CoUninitialize();
  19. #define CoUninitialize Internal_CoUninitialize
  20. void STDAPICALLTYPE Internal_CoTaskMemFree(void *pv);
  21. #define CoTaskMemFree Internal_CoTaskMemFree
  22. #endif // DELAY_H