-
-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
62 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
/* | ||
* lib/pandagl/include/pandagl/file_reader.h | ||
* | ||
* Copyright (c) 2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
* SPDX-License-Identifier: MIT | ||
* | ||
* This file is part of LCUI, distributed under the MIT License found in the | ||
* LICENSE.TXT file in the root directory of this source tree. | ||
*/ | ||
|
||
#ifndef LIB_PANDAGL_INCLUDE_PANDAGL_FILE_READER_H | ||
#define LIB_PANDAGL_INCLUDE_PANDAGL_FILE_READER_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
/* | ||
* lib/pandagl/src/file_reader.c | ||
* | ||
* Copyright (c) 2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
* SPDX-License-Identifier: MIT | ||
* | ||
* This file is part of LCUI, distributed under the MIT License found in the | ||
* LICENSE.TXT file in the root directory of this source tree. | ||
*/ | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <pandagl/file_reader.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* lib/pandagl/src/image/bmp.h | ||
* lib/pandagl/src/image/bmp_private.h | ||
* | ||
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* lib/pandagl/src/image/jpeg.h | ||
* lib/pandagl/src/image/jpeg_private.h | ||
* | ||
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
void pd_png_reader_create(pd_image_reader_t *reader); | ||
/* | ||
* lib/pandagl/src/image/png_private.h | ||
* | ||
* Copyright (c) 2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
* SPDX-License-Identifier: MIT | ||
* | ||
* This file is part of LCUI, distributed under the MIT License found in the | ||
* LICENSE.TXT file in the root directory of this source tree. | ||
*/ | ||
|
||
void pd_png_reader_create(pd_image_reader_t *reader); | ||
void pd_png_reader_destroy(pd_image_reader_t *reader); | ||
jmp_buf *pd_png_reader_jmpbuf(pd_image_reader_t *reader); | ||
pd_error_t pd_png_reader_read_header(pd_image_reader_t *reader); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,12 @@ | ||
/* | ||
* thread.h -- basic thread management | ||
* lib/thread/include/thread.h: -- basic thread management | ||
* | ||
* Copyright (c) 2018-2022, Liu chao <[email protected]> All rights reserved. | ||
* Copyright (c) 2018-2024, Liu chao <[email protected]> All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are met: | ||
* SPDX-License-Identifier: MIT | ||
* | ||
* * Redistributions of source code must retain the above copyright notice, | ||
* this list of conditions and the following disclaimer. | ||
* * Redistributions in binary form must reproduce the above copyright | ||
* notice, this list of conditions and the following disclaimer in the | ||
* documentation and/or other materials provided with the distribution. | ||
* * Neither the name of LCUI nor the names of its contributors may be used | ||
* to endorse or promote products derived from this software without | ||
* specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | ||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
* This file is part of LCUI, distributed under the MIT License found in the | ||
* LICENSE.TXT file in the root directory of this source tree. | ||
*/ | ||
|
||
#ifndef LIB_THREAD_INCLUDE_THREAD_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
/* | ||
* lib/timer/include/timer.h | ||
* | ||
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
* SPDX-License-Identifier: MIT | ||
* | ||
* This file is part of LCUI, distributed under the MIT License found in the | ||
* LICENSE.TXT file in the root directory of this source tree. | ||
*/ | ||
|
||
#ifndef LCUI_TIMER_H | ||
#define LCUI_TIMER_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
/* | ||
* lib/ui-router/include/ui_router/version.h | ||
* | ||
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
* SPDX-License-Identifier: MIT | ||
* | ||
* This file is part of LCUI, distributed under the MIT License found in the | ||
* LICENSE.TXT file in the root directory of this source tree. | ||
*/ | ||
|
||
#define LIBUI_ROUTER_VERSION "${VERSION}" | ||
#define LIBUI_ROUTER_VERSION_MAJOR ${VERSION_MAJOR} | ||
#define LIBUI_ROUTER_VERSION_MINOR ${VERSION_MINOR} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ const includes = ["lib", "include", "src"].map((file) => | |
path.resolve(cwd, file) | ||
); | ||
const excludes = ["lib/yutil"].map((file) => path.resolve(cwd, file)); | ||
const extensions = [".c", ".h"]; | ||
const extensions = [".c", ".h", ".h.in"]; | ||
const copyrightHolder = "Liu Chao <[email protected]>"; | ||
const copyright = `/* | ||
* {{filePath}}{{summary}} | ||
|