adl_sdk.h 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. /* The statements-of-fact provided herein are intended to be compatible with
  2. * AMD ADL's library. AMD is the creator and copyright holder of the ADL
  3. * library this interface describes, and therefore also defined this interface
  4. * originally.
  5. * These free interfaces were created by Luke Dashjr <luke+freeadl@dashjr.org>
  6. * As interfaces/APIs cannot be copyrighted, there is no license needed in the
  7. * USA and probably many other jurisdictions.
  8. * If your jurisdiction rules otherwise, the header is offered by Luke Dashjr
  9. * under the MIT license, but you are responsible for determining who your
  10. * jurisdiction considers to be the copyright holder in such a case.
  11. *
  12. * THE INFORMATION IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  13. * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  15. * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  16. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  17. * CONNECTION WITH THE INFORMATION OR THE USE OR OTHER DEALINGS IN THE
  18. * INFORMATION.
  19. */
  20. #ifndef ADL_SDK_H_
  21. #define ADL_SDK_H_
  22. #include "adl_structures.h"
  23. typedef void*(
  24. #ifdef __stdcall
  25. __stdcall
  26. #endif
  27. *ADL_MAIN_MALLOC_CALLBACK)(int);
  28. #endif /* ADL_SDK_H_ */