Changeset dc5c303 in mainline for uspace/app/taskbar-cfg/smeedit.h


Ignore:
Timestamp:
2023-12-28T13:59:23Z (2 years ago)
Author:
GitHub <noreply@…>
Children:
6b66de6b
Parents:
42c2e65 (diff), f87ff8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
boba-buba <120932204+boba-buba@…> (2023-12-28 13:59:23)
git-committer:
GitHub <noreply@…> (2023-12-28 13:59:23)
Message:

Merge branch 'master' into topic/packet-capture

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/app/taskbar-cfg/smeedit.h

    r42c2e65 rdc5c303  
    11/*
    2  * Copyright (c) 2006 Ondrej Palkovsky
     2 * Copyright (c) 2023 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup kernel_generic_mm
     29/** @addtogroup taskbar-cfg
    3030 * @{
    3131 */
    32 /** @file
     32/**
     33 * @file Start menu entry edit dialog
    3334 */
    3435
    35 #ifndef KERN_STDLIB_H_
    36 #define KERN_STDLIB_H_
     36#ifndef SMEEDIT_H
     37#define SMEEDIT_H
    3738
    38 #include <stddef.h>
     39#include "types/smeedit.h"
     40#include "types/startmenu.h"
    3941
    40 extern void *malloc(size_t)
    41     __attribute__((malloc));
    42 extern void *realloc(void *, size_t)
    43     __attribute__((warn_unused_result));
    44 extern void free(void *);
     42extern errno_t smeedit_create(startmenu_t *, startmenu_entry_t *, smeedit_t **);
     43extern void smeedit_destroy(smeedit_t *);
    4544
    4645#endif
Note: See TracChangeset for help on using the changeset viewer.