lazarus-ccr/lclbindings/lclincludes/stdctrls.h
sekelsenmat a44a9bb9b4 Added TLabel.Create to c bindings.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@341 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2008-02-03 16:01:04 +00:00

40 lines
637 B
C

/*
stdctrls.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_STDCTRLS_H
#define LAZARUS_STDCTRLS_H
#include "system.h"
#include "classes.h"
#include "controls.h"
#ifdef __cplusplus
extern "C" {
#endif
/* TButton */
typedef void* TButtonH;
__cdecl TButtonH TButton_Create(TComponentH TheOwner);
/* TLabel */
typedef void* TLabelH;
__cdecl TLabelH TLabel_Create(TComponentH TheOwner);
#ifdef __cplusplus
}
#endif
#endif /* !LAZARUS_STDCTRLS_H */