Lines Matching refs:Format
47 static bool CountArgsInFormat (LPCTSTR Format, UINT* nArgs);
48 static LPCTSTR GetNextVarType (LPCTSTR Format, VARTYPE* pVarType);
169 bool COleAutomationControl::PutProperty (char* Name, LPCTSTR Format, ...) in PutProperty() argument
173 va_start (ArgList, Format); in PutProperty()
174 bool bRet = Invoke (DISPATCH_PROPERTYPUT, Name, Format, ArgList); in PutProperty()
179 bool COleAutomationControl::PutProperty (DISPID DispatchId, LPCTSTR Format, ...) in PutProperty() argument
183 va_start (ArgList, Format); in PutProperty()
184 bool bRet = Invoke (DISPATCH_PROPERTYPUT, DispatchId, Format, ArgList); in PutProperty()
189 bool COleAutomationControl::Method (char* Name, LPCTSTR Format, ...) in Method() argument
193 va_start (ArgList, Format); in Method()
194 bool bRet = Invoke (DISPATCH_METHOD, Name, Format, ArgList); in Method()
199 bool COleAutomationControl::Method (DISPID DispatchId, LPCTSTR Format, ...) in Method() argument
203 va_start (ArgList, Format); in Method()
204 bool bRet = Invoke (DISPATCH_METHOD, DispatchId, Format, ArgList); in Method()
210 LPCTSTR Format, va_list ArgList) in Invoke() argument
215 return Invoke (Flags, DispatchId, Format, ArgList); in Invoke()
219 LPCTSTR Format, va_list ArgList) in Invoke() argument
230 if (Format) in Invoke()
231 CountArgsInFormat (Format, &ArgCount); in Invoke()
260 LPCTSTR s = Format; in Invoke()
663 static bool CountArgsInFormat (LPCTSTR Format, UINT* pArgCount) in CountArgsInFormat() argument
667 if (! Format) in CountArgsInFormat()
670 while (*Format) in CountArgsInFormat()
672 if (*Format == '&') in CountArgsInFormat()
673 Format++; in CountArgsInFormat()
675 switch (*Format) in CountArgsInFormat()
690 Format++; in CountArgsInFormat()
700 static LPCTSTR GetNextVarType (LPCTSTR Format, VARTYPE* pVarType) in GetNextVarType() argument
703 if (*Format == '&') in GetNextVarType()
706 Format++; in GetNextVarType()
707 if (!*Format) in GetNextVarType()
710 switch (*Format) in GetNextVarType()
753 return ++Format; in GetNextVarType()