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.

40 lines
1.0 KiB

  1. //
  2. // cuilib.cpp
  3. //
  4. #include "private.h"
  5. #include "cuilib.h"
  6. /*=============================================================================*/
  7. /* */
  8. /* E X P O R T E D F U N C T I O N S */
  9. /* */
  10. /*=============================================================================*/
  11. /* I N I T U I F L I B */
  12. /*------------------------------------------------------------------------------
  13. ------------------------------------------------------------------------------*/
  14. void InitUIFLib( void )
  15. {
  16. InitUIFSys();
  17. InitUIFScheme();
  18. InitUIFUtil();
  19. }
  20. /* D O N E U I F L I B */
  21. /*------------------------------------------------------------------------------
  22. ------------------------------------------------------------------------------*/
  23. void DoneUIFLib( void )
  24. {
  25. DoneUIFScheme();
  26. DoneUIFSys();
  27. DoneUIFUtil();
  28. }