home *** CD-ROM | disk | FTP | other *** search
- /*
- File: MyComponentRoutines.c
-
- Contains: simple component sample.
-
- Written by: John Wang
-
- Copyright: © 1994 by Apple Computer, Inc., all rights reserved.
-
- Change History (most recent first):
-
- <1> 03/14/94 JW Re-Created for Universal Headers.
-
- To Do:
-
- */
-
- #ifdef THINK_C
- #define applec
- #endif
-
- #include <Errors.h>
- #include <Components.h>
-
- #include "MyComponent.h"
- #include "MyComponentRoutines.h"
-
- /* ------------------------------------------------------------------------- */
-
- pascal ComponentResult MyProcedure(Handle storage)
- {
- PrivateGlobals **myPrivateGlobals = (PrivateGlobals **) storage;
-
- if (kDEBUGME)
- DebugStr("\pIn MyProcedure1()");
-
- return(noErr);
- }
-