Path: blob/trunk/cpp/webdriver-interactions/interaction_utils.h
2867 views
/*1Licensed to the Software Freedom Conservancy (SFC) under one2or more contributor license agreements. See the NOTICE file3distributed with this work for additional information4regarding copyright ownership. The SFC licenses this file5to you under the Apache License, Version 2.0 (the "License");6you may not use this file except in compliance with the License.7You may obtain a copy of the License at89http://www.apache.org/licenses/LICENSE-2.01011Unless required by applicable law or agreed to in writing, software12distributed under the License is distributed on an "AS IS" BASIS,13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.14See the License for the specific language governing permissions and15limitations under the License.16*/1718#ifndef interaction_utils_h19#define interaction_utils_h2021#define EXPORT __declspec(dllexport)2223#ifdef __cplusplus24extern "C" {25#endif2627EXPORT void wait(long millis);28EXPORT void waitWithoutMsgPump(long millis);29EXPORT HWND getChildWindow(HWND hwnd, LPCTSTR name);3031#ifdef __cplusplus32}33#endif3435#endif363738