You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@340 8e941d3f-bd1b-0410-a28a-d453659cc2b4
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 */
|