13dd04d5a4
* BUG: Correctly initalize the help browser layout. * NEW: Use the new Image.Fuzzy() method to draw a drop shadow in the welcome screen text. [COMPILER] * NEW: The GB_PCODE_VERSION environment variable can take 'X.YY' as version instead of 'X.YY.ZZZZ', which is actually useless. [GB.COMPRESS] * BUG: Remove useless code never compiled. [GB.DBUS] * BUG: Fix a possible memory leak in a debugging routine. [GB.GSL] * BUG: Remove useless code never compiled. [GB.GTK] * NEW: Implement a cairo surface cache in the Image class, so that drawing the same image several times trigger a GdkPixbuf -> Cairo surface conversion once. * BUG: Slider and Scrollbar controls now raise the Change event only if the value has really changed. [GB.NET] * BUG: Remove useless code never compiled. [GB.NET.CURL] * BUG: Remove useless code never compiled. [GB.NET.SMTP] * BUG: Remove useless code never compiled. [GB.V4L] * BUG: Remove useless code never compiled. git-svn-id: svn://localhost/gambas/trunk@5489 867c0c6c-44f3-4631-809d-bfa615b0a4ec
50 lines
1.2 KiB
C
50 lines
1.2 KiB
C
/***************************************************************************
|
|
|
|
main.c
|
|
|
|
(C) 2005-2008 Daniel Campos Fernández <dcamposf@gmail.com>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA.
|
|
|
|
***************************************************************************/
|
|
|
|
#define __MAIN_C
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "CWebcam.h"
|
|
#include "main.h"
|
|
|
|
GB_INTERFACE GB EXPORT;
|
|
IMAGE_INTERFACE IMAGE EXPORT;
|
|
|
|
GB_DESC *GB_CLASSES[] EXPORT =
|
|
{
|
|
CWebcamDesc,
|
|
CTunerDesc,
|
|
NULL
|
|
};
|
|
|
|
int EXPORT GB_INIT(void)
|
|
{
|
|
GB.GetInterface("gb.image", IMAGE_INTERFACE_VERSION, &IMAGE);
|
|
return 0;
|
|
}
|
|
|
|
void EXPORT GB_EXIT()
|
|
{
|
|
}
|
|
|