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.
 
 
 
 
 
 

17 lines
452 B

#ifndef _REGCTRL_H_
#define _REGCTRL_H_
//
// This function registers an OLE control
//
DWORD RegisterOLEControl(LPCTSTR lpszOcxFile, BOOL fAction);
//
// This function registers all OLE controls from a given INF section
// Note the filenames may contain environment strings. Make sure you
// set them before calling this function
//
DWORD RegisterOLEControlsFromInfSection(HINF hFile, LPCTSTR szSectionName, BOOL fRegister);
#endif