lazarus/components/opengl/lazopenglcontext.pas
maxim d9764005d1 Components, OpenGL: Fix building on Windows
git-svn-id: trunk@26049 -
2010-06-12 00:48:18 +00:00

22 lines
493 B
ObjectPascal
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ Этот файл был автоматически создан Lazarus. Не редактировать!
Исходный код используется только для компиляции и установки пакета.
}
unit lazopenglcontext;
interface
uses
OpenGLContext, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('OpenGLContext',@OpenGLContext.Register);
end;
initialization
RegisterPackage('LazOpenGLContext',@Register);
end.