You've already forked lazarus-ccr
30 lines
448 B
C
30 lines
448 B
C
![]() |
/*
|
||
|
classes.h
|
||
|
|
||
|
C/C++ header for the LCL Exports library
|
||
|
|
||
|
LICENSE: The same modifyed LGPL as the Free Pascal Runtime Library
|
||
|
and the Lazarus Component Library
|
||
|
|
||
|
Copyright (C) 2008 Felipe Monteiro de Carvalho
|
||
|
*/
|
||
|
|
||
|
#ifndef LAZARUS_CLASSES_H
|
||
|
#define LAZARUS_CLASSES_H
|
||
|
|
||
|
#include "system.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/* TComponent */
|
||
|
|
||
|
typedef void* TComponentH;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* !LAZARUS_CLASSES_H */
|