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.

16 lines
452 B

  1. #ifndef _REGCTRL_H_
  2. #define _REGCTRL_H_
  3. //
  4. // This function registers an OLE control
  5. //
  6. DWORD RegisterOLEControl(LPCTSTR lpszOcxFile, BOOL fAction);
  7. //
  8. // This function registers all OLE controls from a given INF section
  9. // Note the filenames may contain environment strings. Make sure you
  10. // set them before calling this function
  11. //
  12. DWORD RegisterOLEControlsFromInfSection(HINF hFile, LPCTSTR szSectionName, BOOL fRegister);
  13. #endif